diff options
author | AnInternetTroll <lucafulger@gmail.com> | 2020-06-25 07:32:09 +0000 |
---|---|---|
committer | AnInternetTroll <lucafulger@gmail.com> | 2020-06-25 07:32:09 +0000 |
commit | ea2f1214e5ace9b468beafb2595d13ef62116044 (patch) | |
tree | b44db7ce4e482656b9d59b87b5dd9416a61a6b33 | |
parent | 4a4e3806d3ae4a75faa4daef110b331764e71efc (diff) | |
parent | 7077496c9a7bee48692787515e93b98d61229598 (diff) | |
download | steve-bot-ea2f1214e5ace9b468beafb2595d13ef62116044.tar steve-bot-ea2f1214e5ace9b468beafb2595d13ef62116044.tar.gz steve-bot-ea2f1214e5ace9b468beafb2595d13ef62116044.tar.bz2 steve-bot-ea2f1214e5ace9b468beafb2595d13ef62116044.tar.lz steve-bot-ea2f1214e5ace9b468beafb2595d13ef62116044.tar.xz steve-bot-ea2f1214e5ace9b468beafb2595d13ef62116044.tar.zst steve-bot-ea2f1214e5ace9b468beafb2595d13ef62116044.zip |
Merge branch 'master' of https://github.com/AnInternetTroll/mcbeDiscordBot
Diffstat (limited to '')
-rwxr-xr-x | cogs/utils.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cogs/utils.py b/cogs/utils.py index 633ff9c..68567f0 100755 --- a/cogs/utils.py +++ b/cogs/utils.py @@ -220,10 +220,10 @@ class Utils(commands.Cog): #return await ctx.send(f"{ctx.message.author.display_name}, you have to wait {round(error.retry_after, 2)} seconds before using this again.") - @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 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): |