Skip to content

Commit

Permalink
remove balle command
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanSmudja committed Dec 20, 2023
1 parent 6c4d573 commit e4b10db
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,22 +122,6 @@ async def russian_roulette(interraction: discord.Interaction):
await interraction.response.send_message(embed=embed)


@bot.tree.command(name="balle")
async def balle(interraction: discord.Interaction):
"""Hur stor balle har du?"""
length = random.randint(6, 25)
if 6 <= length <= 11:
emoji = ":worm:"
elif 12 <= length <= 16:
emoji = ":test_tube:"
elif 17 <= length <= 21:
emoji = ":snake:"
else:
emoji = ":eggplant:"

await interraction.response.send_message(f"{interraction.user.mention} har {length} cm balle {emoji}")


@bot.tree.command(name="chatgpt")
async def gpt(interraction: discord.Interaction, *, fråga: str):
"""Ställ GPT-3.5 en fråga"""
Expand Down

0 comments on commit e4b10db

Please sign in to comment.