From 87f4e40cced035551fca0fa867d62d4ee4fe98b2 Mon Sep 17 00:00:00 2001 From: T-BENZIN Date: Sat, 28 Jun 2025 12:05:08 +0500 Subject: [PATCH] Fixed 'hello' command description --- discord_bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord_bot.py b/discord_bot.py index b3e0eb9..7f6ff6b 100644 --- a/discord_bot.py +++ b/discord_bot.py @@ -24,7 +24,7 @@ async def on_ready(): print(f'Failed to sync commands: {e}') -@bot.tree.command(name='hello', description='Replies with Hello World!') +@bot.tree.command(name='hello', description='Screams at you!') async def hello_command(interaction: discord.Interaction): await interaction.response.send_message('AAAAAAAAAAAAAAAAAAAAA!')