diff --git a/bot/src/core/bot.py b/bot/src/core/bot.py index ccf6014..218959a 100644 --- a/bot/src/core/bot.py +++ b/bot/src/core/bot.py @@ -273,6 +273,10 @@ async def on_slash_command_error( ), ephemeral=True, ) + elif isinstance(error, disnake.errors.InteractionResponded): + await inter.edit_original_message( + embed=embeds.error_embed() + ) else: await inter.response.send_message( embed=embeds.error_embed(repr(error)), ephemeral=True