From c841540097d70e628ab7a71cc69d5762f278ce6f Mon Sep 17 00:00:00 2001 From: sgoudham Date: Sat, 11 Jul 2020 23:57:51 +0100 Subject: [PATCH] Changing Ping Command --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 16277ae6..f8ea9fb3 100644 --- a/main.py +++ b/main.py @@ -100,7 +100,7 @@ async def on_ready(): @commands.is_owner() async def ping(ctx): """Send the latency of the bot (ms)""" - await ctx.send(f'Ping Pong! {round(client.latency * 1000)}ms') + await ctx.send(f'Pong! `{round(client.latency * 1000)}ms`') # Bot event for new member joining, sending an embed introducing them to the server