aboutsummaryrefslogtreecommitdiff
path: root/cogs
diff options
context:
space:
mode:
authorAnInternetTroll <lucafulger@gmail.com>2020-06-04 23:41:02 +0000
committerAnInternetTroll <lucafulger@gmail.com>2020-06-04 23:41:02 +0000
commit9803196ad50d9ea5d62d56b142db25827d98e768 (patch)
tree62705c7c5c3baf7fa7d8c2466c20f9d5f2afebd8 /cogs
parentb6de120560de8aac2a4eb4d03cffbc31b10e16c2 (diff)
parent0da3412fa1a3203abb6ffba2ec67795494685b71 (diff)
downloadsteve-bot-9803196ad50d9ea5d62d56b142db25827d98e768.tar
steve-bot-9803196ad50d9ea5d62d56b142db25827d98e768.tar.gz
steve-bot-9803196ad50d9ea5d62d56b142db25827d98e768.tar.bz2
steve-bot-9803196ad50d9ea5d62d56b142db25827d98e768.tar.lz
steve-bot-9803196ad50d9ea5d62d56b142db25827d98e768.tar.xz
steve-bot-9803196ad50d9ea5d62d56b142db25827d98e768.tar.zst
steve-bot-9803196ad50d9ea5d62d56b142db25827d98e768.zip
Merge branch 'master' of https://github.com/AnInternetTroll/mcbeDiscordBot
Diffstat (limited to 'cogs')
-rwxr-xr-xcogs/utils.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cogs/utils.py b/cogs/utils.py
index b5b779f..36b132f 100755
--- 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)