diff options
Diffstat (limited to 'cogs/utils.py')
-rwxr-xr-x | cogs/utils.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/cogs/utils.py b/cogs/utils.py index 4b35f71..9346029 100755 --- a/cogs/utils.py +++ b/cogs/utils.py @@ -250,10 +250,8 @@ class Utils(commands.Cog): @commands.command() async def someone(self, ctx): - if ctx.message.author.id == 395872198323077121: - await ctx.send("grape fuck u") - else: - await ctx.send(choice(ctx.guild.members).mention) + Grape = self.bot.get_user(395872198323077121) + #await ctx.send(choice(ctx.guild.members).mention) @commands.command() async def roll(self, ctx, pool): |