Browse Source

[commands] Run global checks in help formatter.

Help formatter was not checking global bot-level checks, resulting in
showing commands a user did not have permission for with
show_check_failure disabled.
pull/316/merge
khazhyk 8 years ago
committed by Rapptz
parent
commit
b1117262da
  1. 2
      discord/ext/commands/formatter.py

2
discord/ext/commands/formatter.py

@ -252,7 +252,7 @@ class HelpFormatter:
return True
try:
return cmd.can_run(self.context)
return cmd.can_run(self.context) and self.context.bot.can_run(self.context)
except CommandError:
return False

Loading…
Cancel
Save