Browse Source

[commands] Fix bug with local checks and cooldowns not applying.

pull/1929/head
Rapptz 6 years ago
parent
commit
04ee10adc4
  1. 2
      discord/ext/commands/core.py

2
discord/ext/commands/core.py

@ -210,7 +210,6 @@ class Command(_BaseCommand):
try:
checks = func.__commands_checks__
checks.reverse()
del func.__commands_checks__
except AttributeError:
checks = kwargs.get('checks', [])
finally:
@ -218,7 +217,6 @@ class Command(_BaseCommand):
try:
cooldown = func.__commands_cooldown__
del func.__commands_cooldown__
except AttributeError:
cooldown = kwargs.get('cooldown')
finally:

Loading…
Cancel
Save