From 92d3ff2bb713b9e74c7cc5a6c4856353bdd803f1 Mon Sep 17 00:00:00 2001 From: CMDR furrycat Date: Mon, 3 May 2021 13:12:18 +0200 Subject: [PATCH] O7 --- plugins/o7/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/o7/__init__.py b/plugins/o7/__init__.py index 81dc6dd..79d1f21 100644 --- a/plugins/o7/__init__.py +++ b/plugins/o7/__init__.py @@ -8,7 +8,7 @@ class O7(object): return 'o7' async def not_our_message(self, message): - if message.content == 'o7': + if message.content.lower() == 'o7': await bot.maybe_say(message.channel, 'o7') return PluginCommand.exclusive return PluginCommand.ignored -- 2.7.4