added latency to ping

This commit is contained in:
Rushil Umaretiya 2020-10-30 11:02:54 -04:00
parent 93ac9f8b5d
commit a9773eaa71

2
bot.py
View File

@ -123,7 +123,7 @@ async def info(ctx, username):
@bot.command(name='ping')
async def ping(ctx) :
await ctx.send(":ping_pong: Pong")
await ctx.send(f":ping_pong: Pong `Latency: {format(round(bot.latency * 1000, 1))}ms`")
@bot.command(name="whoami")
@commands.has_role(ADMIN_ROLE)