diff options
Diffstat (limited to 'bot/bot.py')
-rw-r--r-- | bot/bot.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -69,6 +69,7 @@ class SeasonalBot(commands.Bot): """Check command errors for UserInputError and reset the cooldown if thrown.""" if isinstance(exception, commands.UserInputError): context.command.reset_cooldown(context) + else: await super().on_command_error(context, exception) |