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

This commit is contained in:
Rapptz 2021-03-28 18:35:59 -04:00
parent a4d29e8cfd
commit 4aee7fed5d

View File

@ -408,7 +408,8 @@ class Cog(metaclass=CogMeta):
except Exception as e: except Exception as e:
# undo our additions # undo our additions
for to_undo in self.__cog_commands__[:index]: 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 raise e
# check if we're overriding the default # check if we're overriding the default