diff options
author | Mango0x45 <dogelikestopkekmemes@gmail.com> | 2020-06-24 18:26:29 +0000 |
---|---|---|
committer | Mango0x45 <dogelikestopkekmemes@gmail.com> | 2020-06-24 18:26:29 +0000 |
commit | ec297f3e8e944a522eeda33e0f797ed98b55ab20 (patch) | |
tree | aaf68acca9a1d5eaf79e27f01d635884a26fefda /cogs/utils.py | |
parent | 1e40b69dc9523f2bb7092f034e452c14e0ac777f (diff) | |
download | steve-bot-ec297f3e8e944a522eeda33e0f797ed98b55ab20.tar steve-bot-ec297f3e8e944a522eeda33e0f797ed98b55ab20.tar.gz steve-bot-ec297f3e8e944a522eeda33e0f797ed98b55ab20.tar.bz2 steve-bot-ec297f3e8e944a522eeda33e0f797ed98b55ab20.tar.lz steve-bot-ec297f3e8e944a522eeda33e0f797ed98b55ab20.tar.xz steve-bot-ec297f3e8e944a522eeda33e0f797ed98b55ab20.tar.zst steve-bot-ec297f3e8e944a522eeda33e0f797ed98b55ab20.zip |
Cleaned up @someone
Diffstat (limited to '')
-rwxr-xr-x | cogs/utils.py | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/cogs/utils.py b/cogs/utils.py index 10c6195..cbcf973 100755 --- a/cogs/utils.py +++ b/cogs/utils.py @@ -267,20 +267,10 @@ class Utils(commands.Cog): # Since I did remove it # And replaced with import randint from random - @commands.command() - async def someone(self, ctx): - blacklist = [536071288859656193] - if ctx.channel.id != int(self.bot.config[str(ctx.message.guild.id)]["fair_channel"]): - 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 == 199070670221475842: - await ctx.send(f"fuck you {ctx.message.author.mention}") - 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 someone(self, ctx): + if ctx.channel.id != int(self.bot.config[str(ctx.message.guild.id)]["fair_channel"]): + await ctx.send(choice(ctx.guild.members).mention) @commands.command() async def roll(self, ctx, pool): |