diff options
-rw-r--r-- | bot/seasons/evergreen/error_handler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/seasons/evergreen/error_handler.py b/bot/seasons/evergreen/error_handler.py index 8e7cc8d3..0d8bb0bb 100644 --- a/bot/seasons/evergreen/error_handler.py +++ b/bot/seasons/evergreen/error_handler.py @@ -56,7 +56,7 @@ class CommandErrorHandler(commands.Cog): return if isinstance(error, InChannelCheckFailure): - await ctx.send(embed=self.error_embed(str(error), NEGATIVE_REPLIES)) + await ctx.send(embed=self.error_embed(str(error), NEGATIVE_REPLIES), delete_after=7.5) return if isinstance(error, commands.UserInputError): @@ -73,7 +73,7 @@ class CommandErrorHandler(commands.Cog): f"This command is on cooldown:\nPlease retry in {mins} minutes {secs} seconds.", NEGATIVE_REPLIES ) - await ctx.send(embed=embed) + await ctx.send(embed=embed, delete_after=7.5) return if isinstance(error, commands.DisabledCommand): |