From 93ac9f8b5df907c9cbb0980889219b4049daebce Mon Sep 17 00:00:00 2001 From: Rushil Umaretiya <2023rumareti@tjhsst.edu> Date: Wed, 28 Oct 2020 21:02:26 -0400 Subject: [PATCH] removed perms for ping --- bot.py | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/bot.py b/bot.py index 3fd417c..482061e 100644 --- a/bot.py +++ b/bot.py @@ -122,7 +122,6 @@ async def info(ctx, username): await ctx.send('\n'.join([f"{i}: {info[i]}" for i in info])) @bot.command(name='ping') -@commands.has_role(ADMIN_ROLE) async def ping(ctx) : await ctx.send(":ping_pong: Pong") @@ -136,21 +135,6 @@ async def whoami(ctx) : async def clear(ctx, amount=3) : await ctx.channel.purge(limit=amount) - -@bot.command(name='99', help='Responds with a random quote from Brooklyn 99') -async def nine_nine(ctx): - brooklyn_99_quotes = [ - 'I\'m the human form of the 💯 emoji.', - 'Bingpot!', - ( - 'Cool. Cool cool cool cool cool cool cool, ' - 'no doubt no doubt no doubt no doubt.' - ), - ] - - response = random.choice(brooklyn_99_quotes) - await ctx.send(response) - @bot.event async def on_command_error(ctx, error):