From 0456e9cc5f2ce7d33db5cdf65142ae830332133d Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Sun, 28 May 2017 14:00:33 +0000 Subject: [PATCH] Fix Ping --- commands/util/ping.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/util/ping.js b/commands/util/ping.js index 43154618..add28f66 100644 --- a/commands/util/ping.js +++ b/commands/util/ping.js @@ -17,7 +17,7 @@ module.exports = class PingCommand extends Command { const message = await msg.say('Pinging...'); return message.edit(stripIndents` :ping_pong: Pong! - **Message Ping:** ${Math.round(msg.createdTimestamp - message.createdTimestamp)}ms + **Message Ping:** ${Math.round(message.createdTimestamp - msg.createdTimestamp)}ms **Heartbeat Ping:** ${Math.round(this.client.ping)}ms `); }