Browse Source

[commands] Prepend mention prefixes in commands.when_mentioned_or

pull/1546/merge
zephyrkul 7 years ago
committed by Rapptz
parent
commit
b9ef80b0d0
  1. 2
      discord/ext/commands/bot.py

2
discord/ext/commands/bot.py

@ -77,7 +77,7 @@ def when_mentioned_or(*prefixes):
"""
def inner(bot, msg):
r = list(prefixes)
r.extend(when_mentioned(bot, msg))
r = when_mentioned(bot, msg) + r
return r
return inner

Loading…
Cancel
Save