From 945840783b19daf11e7513677ba5b02a20ebb02a Mon Sep 17 00:00:00 2001 From: Myned Date: Sat, 28 Oct 2017 15:41:11 -0400 Subject: [PATCH] Removed bot user check for on_message for *ifying embeds --- src/main/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/run.py b/src/main/run.py index 582fd9c..0503665 100644 --- a/src/main/run.py +++ b/src/main/run.py @@ -59,7 +59,7 @@ async def on_ready(): @bot.event async def on_message(message): - if message.author.bot or message.author is bot.user: + if message.author is bot.user: return await bot.process_commands(message)