aboutsummaryrefslogtreecommitdiff
path: root/cogs/util.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cogs/util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cogs/util.py b/cogs/util.py
index e0566d0..3b87d0b 100644
--- a/cogs/util.py
+++ b/cogs/util.py
@@ -6,8 +6,8 @@ class Util(commands.Cog):
def __init__(self, bot):
self.bot = bot
- @commands.command(aliases=['ping'])
- async def _ping(self, ctx):
+ @commands.command()
+ async def ping(self, ctx):
await ctx.send(f'Pong! {round(self.bot.latency*1000)}ms')
def setup(bot):