Browse Source

[commands] Fix bug with cog bot check once not being unloaded properly.

pull/1929/head
Rapptz 6 years ago
parent
commit
10ed41d8a0
  1. 2
      discord/ext/commands/cog.py

2
discord/ext/commands/cog.py

@ -324,6 +324,6 @@ class Cog(metaclass=CogMeta):
bot.remove_check(self.bot_check)
if cls.bot_check_once is not Cog.bot_check_once:
bot.remove_check(self.bot_check_once)
bot.remove_check(self.bot_check_once, call_once=True)
finally:
self.cog_unload()

Loading…
Cancel
Save