From 0fcbc8af218b881cb14c2775acd6c70ffd83b300 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sat, 14 Jun 2025 03:40:23 -0400 Subject: [PATCH] add latency to ping command --- nomen/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nomen/main.py b/nomen/main.py index 591aa71..64f1908 100644 --- a/nomen/main.py +++ b/nomen/main.py @@ -372,7 +372,7 @@ async def admin_eval(ctx, *, body: str): @bot.command() async def ping(ctx): - await ctx.send("Pong") + await ctx.send(f"Pong!\nLatency: {bot.latency*1000:.1f}ms") @bot.command()