diff options
author | Thomas Voss <57815710+Mango0x45@users.noreply.github.com> | 2020-06-04 23:12:42 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-04 23:12:42 +0000 |
commit | 5db81983863e240c026acf2a815d8271d42ef12b (patch) | |
tree | 12788ccc37cd6c5dc73546c9362490e961df8d01 /cogs | |
parent | 34718a65bc3d111560b0513b121167dde9c2b40f (diff) | |
download | steve-bot-5db81983863e240c026acf2a815d8271d42ef12b.tar steve-bot-5db81983863e240c026acf2a815d8271d42ef12b.tar.gz steve-bot-5db81983863e240c026acf2a815d8271d42ef12b.tar.bz2 steve-bot-5db81983863e240c026acf2a815d8271d42ef12b.tar.lz steve-bot-5db81983863e240c026acf2a815d8271d42ef12b.tar.xz steve-bot-5db81983863e240c026acf2a815d8271d42ef12b.tar.zst steve-bot-5db81983863e240c026acf2a815d8271d42ef12b.zip |
Update utils.py
Diffstat (limited to 'cogs')
-rw-r--r-- | cogs/utils.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cogs/utils.py b/cogs/utils.py index 3813119..fbd9f6f 100644 --- 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)) |