aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bot.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot.js b/bot.js
index f9dcd3f..a4306c3 100644
--- a/bot.js
+++ b/bot.js
@@ -30,12 +30,12 @@ function parseCommand(msg) {
.setColor (0x00ae86)
.setTitle('PokeBot Command List')
.setDescription('These are the commands you can use. My prefix is `p:`')
- .addField('Core', 'help', true)
+ .addField('Core', 'help\nping', true)
.setFooter('PokeBot Beta')
);
break;
case 'ping':
- msg.channel.send(':ping_pong: Pong! ' + Math.floor(bot.ping));
+ msg.channel.send(':ping_pong: Pong! ' + Math.floor(bot.ping) + 'ms.');
break;
}
}