diff --git a/bot.py b/bot.py index e3f973d..a50cbc9 100755 --- a/bot.py +++ b/bot.py @@ -828,8 +828,9 @@ async def on_app_command_error(self, interaction: discord.Interaction, error: ap if isinstance(error, app_commands.MissingPermissions): if interaction.command.name == "logout": await interaction.response.send_message( - "Error: You do not have permission to use this command. Only the bot owner can use the `logout` command.", - ephemeral=True) + "Error: You do not have permission to use this command. " + "Only the bot owner can use the `logout` command. \n" + "https://http.cat/status/400", ephemeral=True) # Handle command not found error elif isinstance(error, app_commands.CommandNotFound): await interaction.response.send_message( @@ -857,8 +858,9 @@ async def logout_bot(self, interaction: discord.Interaction): await self.bot.close() else: await interaction.response.send_message( - "Error: You do not have permission to use this command. Only the bot owner can use the `logout` command.", - ephemeral=True) + "Error: You do not have permission to use this command. " + "Only the bot owner can use the `logout` command. \n" + "https://http.cat/status/400", ephemeral=True) # Task to send a random cake GIF every 24 hours @tasks.loop(hours=24) # Run every 24 hours