Browse Source

[commands] Raise CheckFailure if all bot "check once" fail

Fix #2643
pull/2650/head
Rapptz 5 years ago
parent
commit
874c2cd3c9
  1. 2
      discord/ext/commands/bot.py

2
discord/ext/commands/bot.py

@ -890,6 +890,8 @@ class BotBase(GroupMixin):
try:
if await self.can_run(ctx, call_once=True):
await ctx.command.invoke(ctx)
else:
raise errors.CheckFailure('The global check once functions failed.')
except errors.CommandError as exc:
await ctx.command.dispatch_error(ctx, exc)
else:

Loading…
Cancel
Save