From 3f7bbc2fc6aef47344cde1cafb2ceb14b2c65648 Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Thu, 22 Apr 2021 20:30:43 -0700 Subject: [PATCH] dont post to the channel if I run commands --- app/bot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/bot.py b/app/bot.py index 3f826c80..b74fdddf 100755 --- a/app/bot.py +++ b/app/bot.py @@ -496,6 +496,7 @@ async def on_command_completion(ctx): embed.add_field(name = "Channel:", value = f"{ctx.channel} **( <#{ctx.channel.id}> )**") embed.add_field(name = "Link to Message:", value = "**(** [%s](%s) **)**" % (ctx.channel, ctx.message.jump_url)) embed.add_field(name = "Server:", value = f"{ctx.guild} **( <#{ctx.channel.id}> )**") - await channel.send(embed=embed) + if ctx.message.author.id != '144986109804412928': + await channel.send(embed=embed) bot.run(TOKEN)