diff options
author | AnInternetTroll <lucafulger@gmail.com> | 2020-06-24 18:50:07 +0000 |
---|---|---|
committer | AnInternetTroll <lucafulger@gmail.com> | 2020-06-24 18:50:07 +0000 |
commit | b3d4b225b98cdfcf2897fe75a51139ad24ffe95d (patch) | |
tree | 263fec5d98afec3f652b5e6c196621d5374091d6 | |
parent | 114dee26597b561161d7c005e1789ff06f6ce989 (diff) | |
parent | ec297f3e8e944a522eeda33e0f797ed98b55ab20 (diff) | |
download | steve-bot-b3d4b225b98cdfcf2897fe75a51139ad24ffe95d.tar steve-bot-b3d4b225b98cdfcf2897fe75a51139ad24ffe95d.tar.gz steve-bot-b3d4b225b98cdfcf2897fe75a51139ad24ffe95d.tar.bz2 steve-bot-b3d4b225b98cdfcf2897fe75a51139ad24ffe95d.tar.lz steve-bot-b3d4b225b98cdfcf2897fe75a51139ad24ffe95d.tar.xz steve-bot-b3d4b225b98cdfcf2897fe75a51139ad24ffe95d.tar.zst steve-bot-b3d4b225b98cdfcf2897fe75a51139ad24ffe95d.zip |
Merge branch 'master' of https://github.com/AnInternetTroll/mcbeDiscordBot
-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 931e54a..9713e2f 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): |