aboutsummaryrefslogtreecommitdiff
path: root/commands/ping.js
blob: d1d920494b7d9ee5e70504bf5799dd3b0f6d4faf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
exports.run = (bot, msg) => {
  msg.channel.send(':ping_pong: Pong! ' + Math.floor(bot.ping) + 'ms.');
};

exports.conf = {
  aliases: [],
  guildOnly: true,
};

exports.help = {
  name: 'ping',
  description: 'Pings the bot and replies with the latency.',
  category:'Information',
};