From 98de50e555528f2461dddef2bde50cb29821a6a5 Mon Sep 17 00:00:00 2001 From: ishaan Date: Tue, 18 May 2021 19:01:50 -0400 Subject: [PATCH] Update pingCog.py --- cogs/pingCog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/pingCog.py b/cogs/pingCog.py index d3aa6e5..e25807f 100644 --- a/cogs/pingCog.py +++ b/cogs/pingCog.py @@ -14,7 +14,7 @@ class PingCog(commands.Cog): # Commands @commands.command(aliases=['latency']) async def ping(self, ctx): - await ctx.send(f'Pong! {round(client.latency * 1000)}ms') + await ctx.send(f'Pong! {client.latency}ms') def setup(client): client.add_cog(PingCog(client)) \ No newline at end of file