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