From 02e61e95a5563a10ecaf64896836bbe1097db802 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Tue, 18 Aug 2020 02:50:46 +0100 Subject: [PATCH] Formatting ping command differently --- cogs/info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/info.py b/cogs/info.py index 3dcaa632..1916c408 100644 --- a/cogs/info.py +++ b/cogs/info.py @@ -147,7 +147,7 @@ class Info(Cog): async def ping(self, ctx): """Latency of the Bot (ms)""" - await self.bot.generate_embed(ctx, desc=f"Pong! `{round(self.bot.latency * 1000)}ms`") + await self.bot.generate_embed(ctx, desc=f"Pong! **{round(self.bot.latency * 1000)}ms**") @command(name="userinfo") @cooldown(1, 5, BucketType.user)