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 `); }