Browse Source

[commands] Only remove top level commands on cog load failure

pull/6587/head
Rapptz 4 years ago
parent
commit
4aee7fed5d
  1. 3
      discord/ext/commands/cog.py

3
discord/ext/commands/cog.py

@ -408,7 +408,8 @@ class Cog(metaclass=CogMeta):
except Exception as e:
# undo our additions
for to_undo in self.__cog_commands__[:index]:
bot.remove_command(to_undo.name)
if to_undo.parent is None:
bot.remove_command(to_undo.name)
raise e
# check if we're overriding the default

Loading…
Cancel
Save