From e4b10dbc6f76a44eeb0eea0ab87e037d4c95b2dd Mon Sep 17 00:00:00 2001 From: Stefan Smudja Date: Wed, 20 Dec 2023 14:33:30 +0100 Subject: [PATCH] remove balle command --- bot.py | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/bot.py b/bot.py index eaa0589..43a8602 100644 --- a/bot.py +++ b/bot.py @@ -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"""