From 0bdc23a90be7f349b3f11f2a96dfb9a0c3b64ade Mon Sep 17 00:00:00 2001 From: Luke Robles <98352913+lrobles-iterable@users.noreply.github.com> Date: Thu, 26 Jan 2023 20:56:45 -0800 Subject: [PATCH] user ID is an int, not a string --- app/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/bot.py b/app/bot.py index 66961cea..4114e9da 100755 --- a/app/bot.py +++ b/app/bot.py @@ -81,7 +81,7 @@ async def did_you_mean(ctx): @bot.listen("on_message") # harass jason with shitposts async def make_a_change(ctx): - if ctx.author.id == "83012791983673344": + if ctx.author.id == 83012791983673344: await ctx.reply("Just tryin to make a change :-\\")