From 35a3e32409cf12a459cd1be84404117c1cea804b Mon Sep 17 00:00:00 2001 From: Luke Robles <98352913+lrobles-iterable@users.noreply.github.com> 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:]