aboutsummaryrefslogtreecommitdiff
path: root/commands/ping.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/ping.js')
-rw-r--r--commands/ping.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/commands/ping.js b/commands/ping.js
index afb3807..b8d2779 100644
--- a/commands/ping.js
+++ b/commands/ping.js
@@ -18,16 +18,16 @@
*
* *************************************/
module.exports.run = async (client, message) => {
- message.reply('**PONG!** :ping_pong: ' + Math.round(client.ping) + ' ms');
+ message.reply('**PONG!** :ping_pong: ' + Math.round(client.ws.ping) + ' ms');
};
exports.conf = {
- aliases: [],
- guildOnly: false,
+ aliases: [],
+ guildOnly: false,
};
exports.help = {
- name: 'ping',
- description: 'Ping the bot.',
- usage: 'ping',
- category: '- General Commands',
+ name: 'ping',
+ description: 'Ping the bot.',
+ usage: 'ping',
+ category: '- General Commands',
};