This commit is contained in:
Daniel Odendahl Jr
2017-05-28 14:00:33 +00:00
parent ad982c6533
commit 0456e9cc5f
+1 -1
View File
@@ -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
`);
}