From 280ceff377a3c850c250af0bd44fd8a3cf140ff6 Mon Sep 17 00:00:00 2001 From: Luke Robles <98352913+lrobles-iterable@users.noreply.github.com> Date: Tue, 18 Oct 2022 22:13:31 -0700 Subject: [PATCH] bail out of send command if its NOT my id --- app/cogs/server_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/cogs/server_utils.py b/app/cogs/server_utils.py index 83a6715d..727b3289 100644 --- a/app/cogs/server_utils.py +++ b/app/cogs/server_utils.py @@ -100,7 +100,7 @@ class ServerUtils(commands.Cog): @commands.command(name="send") async def send(self, ctx, message): - if ctx.message.author.id == core_utils.my_id: + if ctx.message.author.id != core_utils.my_id: return select = Select( placeholder="Select a server to send a message to",