diff --git a/yaboli/bot.py b/yaboli/bot.py index a54b251..e162893 100644 --- a/yaboli/bot.py +++ b/yaboli/bot.py @@ -128,9 +128,11 @@ class Bot(): if not self.commands.exists(command): return - if not name == self.mentionable(): + if not name == self.mentionable().lower(): return + name = self.room.mentionable(name).lower() + if bot_id is not None: # id specified if self.manager.get(bot_id) == self: self.commands.call(command, message, arguments, flags, options)