Added typing action in 'hello' command interaction.

This commit is contained in:
T-BENZIN 2025-06-28 12:07:07 +05:00
parent 87f4e40cce
commit 0d734024dc

View File

@ -26,6 +26,7 @@ async def on_ready():
@bot.tree.command(name='hello', description='Screams at you!') @bot.tree.command(name='hello', description='Screams at you!')
async def hello_command(interaction: discord.Interaction): async def hello_command(interaction: discord.Interaction):
async with interaction.channel.typing():
await interaction.response.send_message('AAAAAAAAAAAAAAAAAAAAA!') await interaction.response.send_message('AAAAAAAAAAAAAAAAAAAAA!')