diff --git a/disco/bot/bot.py b/disco/bot/bot.py index ce8b4f3..7693f50 100644 --- a/disco/bot/bot.py +++ b/disco/bot/bot.py @@ -225,7 +225,7 @@ class Bot(LoggingClass): commands = list(self.commands) re_str = '|'.join(command.regex for command in commands) if re_str: - self.command_matches_re = re.compile(re_str) + self.command_matches_re = re.compile(re_str, re.I) else: self.command_matches_re = None