From ce1135976e1255e95cea3ab4d469f34422a25773 Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Thu, 12 Jan 2023 11:30:58 -0800 Subject: [PATCH] fix chedck for author in did you mean --- app/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/bot.py b/app/bot.py index b870f535..5c89d718 100755 --- a/app/bot.py +++ b/app/bot.py @@ -67,7 +67,7 @@ async def he_just_like_me(ctx): @bot.listen("on_message") async def did_you_mean(ctx): - if ctx.message.author.id != core_utils.my_id: + if ctx.author.id != core_utils.my_id: message = ctx.content command = ctx.content.split()[0][1:]