Browse Source

[commands] Register cog listeners with the name of the attribute.

pull/1278/head
Rapptz 8 years ago
parent
commit
9cb89f019e
  1. 2
      discord/ext/commands/bot.py

2
discord/ext/commands/bot.py

@ -470,7 +470,7 @@ class BotBase(GroupMixin):
# register event listeners the cog has
if name.startswith('on_'):
self.add_listener(member)
self.add_listener(member, name)
def get_cog(self, name):
"""Gets the cog instance requested.

Loading…
Cancel
Save