diff options
| author | TheEdgeNK <trey6979@gmail.com> | 2018-06-27 18:31:43 -0400 |
|---|---|---|
| committer | TheEdgeNK <trey6979@gmail.com> | 2018-06-27 18:31:43 -0400 |
| commit | 90f7db041e173b1410f945f5fe112eed13e3aec6 (patch) | |
| tree | ca11b4a57cb17fb58362213eb6282b6ba2a94119 | |
| parent | ba19dc8dee42dec15c5ae0ebec459956d3b571d4 (diff) | |
| download | PokeBot-90f7db041e173b1410f945f5fe112eed13e3aec6.tar.gz PokeBot-90f7db041e173b1410f945f5fe112eed13e3aec6.tar.bz2 PokeBot-90f7db041e173b1410f945f5fe112eed13e3aec6.zip | |
final changes
| -rw-r--r-- | commands/Getting Started/ping.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/commands/Getting Started/ping.js b/commands/Getting Started/ping.js index 72ac036..83b7c26 100644 --- a/commands/Getting Started/ping.js +++ b/commands/Getting Started/ping.js @@ -12,10 +12,11 @@ exports.run = (bot, msg) => { const embed = new RichEmbed(); embed .setColor (0x00ae86) + .setTitle(':computer: Bot Statistics') .setDescription('Showing bot statistics:') .setFooter('Pokebot 2.0 Alpha 1'); - embed.addField('Client Heartbeat', Math.floor(bot.ping) + 'ms.'); + embed.addField('Client Heartbeat', Math.floor(bot.ping) + ' ms.'); msg.channel.send({ embed }) }; |
