diff options
author | Thomas Voss <57815710+Mango0x45@users.noreply.github.com> | 2020-06-04 23:40:52 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-04 23:40:52 +0000 |
commit | 0da3412fa1a3203abb6ffba2ec67795494685b71 (patch) | |
tree | 99d86b5f0b512b16f116b84c9f382d9103e4f86b /cogs | |
parent | 77e9f8759bff94c296e33a80d1512d2d40cacd44 (diff) | |
download | steve-bot-0da3412fa1a3203abb6ffba2ec67795494685b71.tar steve-bot-0da3412fa1a3203abb6ffba2ec67795494685b71.tar.gz steve-bot-0da3412fa1a3203abb6ffba2ec67795494685b71.tar.bz2 steve-bot-0da3412fa1a3203abb6ffba2ec67795494685b71.tar.lz steve-bot-0da3412fa1a3203abb6ffba2ec67795494685b71.tar.xz steve-bot-0da3412fa1a3203abb6ffba2ec67795494685b71.tar.zst steve-bot-0da3412fa1a3203abb6ffba2ec67795494685b71.zip |
Update utils.py
Diffstat (limited to 'cogs')
-rw-r--r-- | cogs/utils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cogs/utils.py b/cogs/utils.py index b5b779f..36b132f 100644 --- a/cogs/utils.py +++ b/cogs/utils.py @@ -250,11 +250,12 @@ 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 == 536071288859656193: + 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) |