diff options
| author | Trey <trey6979@gmail.com> | 2018-02-23 19:24:53 -0500 |
|---|---|---|
| committer | Trey <trey6979@gmail.com> | 2018-02-23 19:24:53 -0500 |
| commit | 3a230b5796d982639c3b3bcb2dfc0bc9b7a8b0a4 (patch) | |
| tree | e818bbda12075bde5a10b10558a7634293355c0b /bot.js | |
| parent | ea62f12e46d5b27161d4f3e7ff665f10fc272aaa (diff) | |
| download | PokeBot-3a230b5796d982639c3b3bcb2dfc0bc9b7a8b0a4.tar.gz PokeBot-3a230b5796d982639c3b3bcb2dfc0bc9b7a8b0a4.tar.bz2 PokeBot-3a230b5796d982639c3b3bcb2dfc0bc9b7a8b0a4.zip | |
fixed errors by my eyes...
Diffstat (limited to 'bot.js')
| -rw-r--r-- | bot.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } } |
