From 09796e90cba4b56deaccbdfae02e422ba177183f Mon Sep 17 00:00:00 2001 From: sgoudham Date: Thu, 23 Jul 2020 11:13:53 +0100 Subject: [PATCH] Removing ping command --- cogs/info.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/cogs/info.py b/cogs/info.py index 15a58fcd..7d5acd46 100644 --- a/cogs/info.py +++ b/cogs/info.py @@ -57,11 +57,6 @@ class Info(commands.Cog): def __init__(self, bot): self.bot = bot - @command(name="ping", aliases=["Ping"]) - async def _ping(self, ctx): - """Sends the latency of the bot (ms)""" - await ctx.send(f'Pong! `{round(self.bot.latency * 1000)}ms`') - @command(name="userinfo", aliases=["ui"]) @cooldown(1, 5, BucketType.user) async def user_info(self, ctx, target: Optional[Member]):