diff options
author | AnInternetTroll <lucafulger@gmail.com> | 2020-06-04 23:27:11 +0000 |
---|---|---|
committer | AnInternetTroll <lucafulger@gmail.com> | 2020-06-04 23:27:11 +0000 |
commit | efb3866809c67598caf4919ebb837477fae5a25f (patch) | |
tree | 56270ea0418a734b5cbd1c6e95dc3f8d7475fc3e /cogs | |
parent | 8a79e3daf9478e869ced84e817184a8b69cf369a (diff) | |
parent | 53cb389643a6235ffec68247833f9a25f6abace2 (diff) | |
download | steve-bot-efb3866809c67598caf4919ebb837477fae5a25f.tar steve-bot-efb3866809c67598caf4919ebb837477fae5a25f.tar.gz steve-bot-efb3866809c67598caf4919ebb837477fae5a25f.tar.bz2 steve-bot-efb3866809c67598caf4919ebb837477fae5a25f.tar.lz steve-bot-efb3866809c67598caf4919ebb837477fae5a25f.tar.xz steve-bot-efb3866809c67598caf4919ebb837477fae5a25f.tar.zst steve-bot-efb3866809c67598caf4919ebb837477fae5a25f.zip |
Merge branch 'master' of https://github.com/AnInternetTroll/mcbeDiscordBot
Diffstat (limited to 'cogs')
-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 f319e63..68cdbcf 100755 --- a/cogs/utils.py +++ b/cogs/utils.py @@ -250,10 +250,10 @@ class Utils(commands.Cog): @commands.command() async def someone(self, ctx): - Grape = self.bot.get_user(395872198323077121) - if ctx.message.author != Grape: - ctx.send('ok') - #await ctx.send(choice(ctx.guild.members).mention) + if ctx.author.id != 395872198323077121: + await ctx.send(choice(ctx.guild.members).mention) + else: + await ctx.send("grape is a bitch") @commands.command() async def roll(self, ctx, pool): |