From 2e7d8b7f6df28467ed6a4b6da1f8940e50bba2f9 Mon Sep 17 00:00:00 2001 From: Zevaryx Date: Thu, 1 Jul 2021 17:17:11 -0600 Subject: [PATCH] Fix command processing --- jarvis/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/jarvis/__init__.py b/jarvis/__init__.py index fd80076..a45602d 100644 --- a/jarvis/__init__.py +++ b/jarvis/__init__.py @@ -77,6 +77,7 @@ async def on_message(message: Message): if autoreact: for reaction in autoreact["reactions"]: await message.add_reaction(reaction) + await jarvis.process_commands(message) @jarvis.event