removed perms for ping

This commit is contained in:
Rushil Umaretiya 2020-10-28 21:02:26 -04:00
parent f56c90bf6a
commit 93ac9f8b5d

16
bot.py
View File

@ -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):