bail out of send command if its NOT my id

This commit is contained in:
Luke Robles 2022-10-18 22:13:31 -07:00
parent 1a7ef19898
commit aa7243e0d6

View File

@ -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",