summaryrefslogtreecommitdiff
path: root/commands/ping.js
blob: 5ad82fd3b3529011ede036036fb668710c0738ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports.run = async (client, message) => {
    message.reply('**PONG!** :ping_pong: ' + Math.round(client.ping) + ' ms');
};

exports.conf = {
  aliases: [],
  guildOnly: false,
};
exports.help = {
  name: 'ping',
  description: 'Displays the ping of the bot.',
  usage: 'ping',
  category: '- General Commands',
};