Skip to content

Commit

Permalink
Merge pull request #28 from Hamziee/dev
Browse files Browse the repository at this point in the history
v0.4.1-beta
  • Loading branch information
Hamziee authored May 28, 2024
2 parents c6df9b7 + fd3e541 commit 881b756
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ The following versions will receive security updates as needed:

| Version | Supported |
| ------------ | ------------------ |
| 0.4.0-beta | :white_check_mark: |
| < 0.4.0-beta | :x: |
| 0.4.1-beta | :white_check_mark: |
| < 0.4.1-beta | :x: |

## Reporting a Vulnerability

Expand Down
6 changes: 3 additions & 3 deletions commands/hug.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ async def hug(self, interaction: discord.Interaction, member: discord.Member):
if member.id == interaction.user.id:
await interaction.response.send_message(content="You can't hug yourself! Here I will give you a big hug! <a:ava_CatCuddle:1244799986600902758>", embed=embed)
return
if member.bot:
await interaction.response.send_message(content="Bots don't need hugs! But I do, so here is a hug for you! <a:AVA_cats_hug:1244799755960451159>", embed=embed)
return
if member.id == config.BOT_ID:
await interaction.response.send_message(content="Here I will give you a big hug! <a:AVA_hugg:1244799800378130472>", embed=embed)
return
if member.bot:
await interaction.response.send_message(content="Bots don't need hugs! But I do, so here is a hug for you! <a:AVA_cats_hug:1244799755960451159>", embed=embed)
return
await interaction.response.send_message(content= f"{interaction.user.mention} hugs {member.mention} <:AVA_hug:1244799683042344970>", embed=embed)
except httpx.HTTPError as http_err:
print(f'HTTP error occurred: {http_err}')
Expand Down
6 changes: 3 additions & 3 deletions commands/kiss.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ async def kiss(self, interaction: discord.Interaction, member: discord.Member):
if member.id == interaction.user.id:
await interaction.response.send_message(content="You can't kiss yourself! Here I will give you a big kiss! <a:ava_CatCuddle:1244799986600902758>", embed=embed)
return
if member.bot:
await interaction.response.send_message(content="Bots don't need kisses! But I do, so here is a kiss for you! <a:AVA_cats_hug:1244799755960451159>", embed=embed)
return
if member.id == config.BOT_ID:
await interaction.response.send_message(content="Here I will give you a big kiss! <a:AVA_hugg:1244799800378130472>", embed=embed)
return
if member.bot:
await interaction.response.send_message(content="Bots don't need kisses! But I do, so here is a kiss for you! <a:AVA_cats_hug:1244799755960451159>", embed=embed)
return
await interaction.response.send_message(content= f"{interaction.user.mention} kisses {member.mention} <:AVA_hug:1244799683042344970>", embed=embed)
except httpx.HTTPError as http_err:
print(f'HTTP error occurred: {http_err}')
Expand Down
2 changes: 1 addition & 1 deletion ex_config (change me to config.py).py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AVA_VERSION = 'v0.4.0-beta' # Do not change this, it will help with troubleshooting later
AVA_VERSION = 'v0.4.1-beta' # Do not change this, it will help with troubleshooting later
CONFIG_VERSION = 3 # Do not change this, it will help with troubleshooting later

# Required Bot Configuration
Expand Down

0 comments on commit 881b756

Please sign in to comment.