diff options
author | Thomas Voss <57815710+Mango0x45@users.noreply.github.com> | 2020-06-04 23:46:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-04 23:46:15 +0000 |
commit | 531e205ac2b4094166b9f0359e1ca57a0f3e3730 (patch) | |
tree | ead6930dc2658c599c8547bfb7b900fcdae674d7 | |
parent | 0da3412fa1a3203abb6ffba2ec67795494685b71 (diff) | |
download | steve-bot-531e205ac2b4094166b9f0359e1ca57a0f3e3730.tar steve-bot-531e205ac2b4094166b9f0359e1ca57a0f3e3730.tar.gz steve-bot-531e205ac2b4094166b9f0359e1ca57a0f3e3730.tar.bz2 steve-bot-531e205ac2b4094166b9f0359e1ca57a0f3e3730.tar.lz steve-bot-531e205ac2b4094166b9f0359e1ca57a0f3e3730.tar.xz steve-bot-531e205ac2b4094166b9f0359e1ca57a0f3e3730.tar.zst steve-bot-531e205ac2b4094166b9f0359e1ca57a0f3e3730.zip |
Update utils.py
-rw-r--r-- | cogs/utils.py | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/cogs/utils.py b/cogs/utils.py index 36b132f..7f2b595 100644 --- a/cogs/utils.py +++ b/cogs/utils.py @@ -251,14 +251,15 @@ class Utils(commands.Cog): @commands.command() async def someone(self, ctx): blacklist = [536071288859656193] - if ctx.author.id == 395872198323077121: - await ctx.send("grape is a bitch") - elif ctx.author.id == 521153476714299402: - await ctx.send("ZMG is smooth brain") - elif ctx.author.id in blacklist: - await ctx.send("not even bothering with a message for you. You're just an edgy sheep") - else: - await ctx.send(choice(ctx.guild.members).mention) + if ctx.channel.id != 589110766578434078: + if ctx.author.id == 395872198323077121: + await ctx.send("grape is a bitch") + elif ctx.author.id == 521153476714299402: + await ctx.send("ZMG is smooth brain") + elif ctx.author.id in blacklist: + await ctx.send("not even bothering with a message for you. You're just an edgy sheep") + else: + await ctx.send(choice(ctx.guild.members).mention) @commands.command() async def roll(self, ctx, pool): |