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

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

exports.help = {
  name: 'ping',
  description: 'ping.',
  usage: 'ping',
};