diff options
author | AnInternetTroll <lucafulger@gmail.com> | 2020-06-04 23:12:50 +0000 |
---|---|---|
committer | AnInternetTroll <lucafulger@gmail.com> | 2020-06-04 23:12:50 +0000 |
commit | 5d7f592f55e5da6227865523ee0a72f132d77f75 (patch) | |
tree | 61c1554b89c85f14c00098288e0c7612782e50f1 /cogs | |
parent | 2065ec8498ba03e5846dd02bf3d592551ea8e772 (diff) | |
parent | 5db81983863e240c026acf2a815d8271d42ef12b (diff) | |
download | steve-bot-5d7f592f55e5da6227865523ee0a72f132d77f75.tar steve-bot-5d7f592f55e5da6227865523ee0a72f132d77f75.tar.gz steve-bot-5d7f592f55e5da6227865523ee0a72f132d77f75.tar.bz2 steve-bot-5d7f592f55e5da6227865523ee0a72f132d77f75.tar.lz steve-bot-5d7f592f55e5da6227865523ee0a72f132d77f75.tar.xz steve-bot-5d7f592f55e5da6227865523ee0a72f132d77f75.tar.zst steve-bot-5d7f592f55e5da6227865523ee0a72f132d77f75.zip |
Merge branch 'master' of https://github.com/AnInternetTroll/mcbeDiscordBot
Diffstat (limited to 'cogs')
-rwxr-xr-x | cogs/utils.py | 5 |
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)) |