mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-06-10 05:35:06 +00:00
[commands] Correct command removing during cog injecting
This commit is contained in:
parent
85a51c1464
commit
b8c4ce6b86
@ -385,7 +385,7 @@ 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)
|
bot.remove_command(to_undo.name)
|
||||||
raise e
|
raise e
|
||||||
|
|
||||||
# check if we're overriding the default
|
# check if we're overriding the default
|
||||||
|
Loading…
x
Reference in New Issue
Block a user