1
0
Fork 0
mirror of https://github.com/myned/modufur.git synced 2024-11-01 21:02:38 +00:00

Removed bot user check for on_message for *ifying embeds

This commit is contained in:
Myned 2017-10-28 15:41:11 -04:00
parent e74a3b0bc3
commit 945840783b

View file

@ -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)