aboutsummaryrefslogtreecommitdiff
path: root/cogs/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'cogs/utils.py')
-rwxr-xr-xcogs/utils.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/cogs/utils.py b/cogs/utils.py
index 3813119..fbd9f6f 100755
--- a/cogs/utils.py
+++ b/cogs/utils.py
@@ -250,11 +250,12 @@ class Utils(commands.Cog):
@commands.command()
async def someone(self, ctx):
- await ctx.send(choice(ctx.guild.members).mention)
+ await ctx.send("grape fuck u")
+#await ctx.send(choice(ctx.guild.members).mention)
@commands.command()
async def roll(self, ctx, pool):
- #await ctx.send(f"You rolled a {randint(0, int(pool))}")
+ await ctx.send(f"You rolled a {randint(0, int(pool))}")
def setup(bot):
bot.add_cog(Utils(bot))