diff --git a/commands/util/ping.js b/commands/util/ping.js index dd0e2273..20c286f7 100644 --- a/commands/util/ping.js +++ b/commands/util/ping.js @@ -19,7 +19,7 @@ module.exports = class PingCommand extends Command { const ping = Math.round(message.createdTimestamp - msg.createdTimestamp); return message.edit(stripIndents` 🏓 P${'o'.repeat(Math.min(Math.round(ping / 100), 1500))}ng! \`${formatNumber(ping)}ms\` - Heartbeat: \`${formatNumber(Math.round(this.client.ping))}ms\` + Heartbeat: \`${formatNumber(Math.round(this.client.ws.ping))}ms\` `); } };