aboutsummaryrefslogtreecommitdiff
path: root/commands/ping.js
diff options
context:
space:
mode:
authorUnknown <jtsshieh@outlook.com>2018-02-23 21:23:18 -0500
committerUnknown <jtsshieh@outlook.com>2018-02-23 21:23:18 -0500
commit3162a4132d36e36635135aefee76ba899694a043 (patch)
tree4069282d7070b997166c783411a169c5e2159307 /commands/ping.js
parentbf44f01bc2684fb3ffa7b01f4169a62568164f29 (diff)
downloadPokeBot-3162a4132d36e36635135aefee76ba899694a043.tar.gz
PokeBot-3162a4132d36e36635135aefee76ba899694a043.tar.bz2
PokeBot-3162a4132d36e36635135aefee76ba899694a043.zip
New help
Diffstat (limited to 'commands/ping.js')
-rw-r--r--commands/ping.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/ping.js b/commands/ping.js
index 8ba3ae9..0c61fd5 100644
--- a/commands/ping.js
+++ b/commands/ping.js
@@ -1,4 +1,4 @@
-exports.run = (bot, msg, args) => {
+exports.run = (bot, msg) => {
msg.channel.send(':ping_pong: Pong! ' + Math.floor(bot.ping) + 'ms.');
};
@@ -9,6 +9,6 @@ exports.conf = {
exports.help = {
name: 'ping',
- description: 'ping.',
- usage: 'ping',
+ description: 'Pings the bot and replies with the latency.',
+ category:'Getting Started',
};