From badbe26408346174da3c613ead69f2a538bfe0c8 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Fri, 17 Jul 2020 11:04:01 +0100 Subject: [PATCH] Changing commentary of ping command --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 67b40c7b..a6c64e26 100644 --- a/main.py +++ b/main.py @@ -95,8 +95,8 @@ async def on_ready(): # Bot ~Ping command in milliseconds @client.command(name="ping", aliases=["Ping"]) -async def ping(ctx): - """Send the latency of the bot (ms)""" +async def _ping(ctx): + """Sends the latency of the bot (ms)""" await ctx.send(f'Pong! `{round(client.latency * 1000)}ms`')