aboutsummaryrefslogtreecommitdiff
path: root/commands/Getting Started
diff options
context:
space:
mode:
authorTheEdgeNK <trey6979@gmail.com>2018-06-27 18:31:43 -0400
committerTheEdgeNK <trey6979@gmail.com>2018-06-27 18:31:43 -0400
commit90f7db041e173b1410f945f5fe112eed13e3aec6 (patch)
treeca11b4a57cb17fb58362213eb6282b6ba2a94119 /commands/Getting Started
parentba19dc8dee42dec15c5ae0ebec459956d3b571d4 (diff)
downloadPokeBot-90f7db041e173b1410f945f5fe112eed13e3aec6.tar.gz
PokeBot-90f7db041e173b1410f945f5fe112eed13e3aec6.tar.bz2
PokeBot-90f7db041e173b1410f945f5fe112eed13e3aec6.zip
final changes
Diffstat (limited to 'commands/Getting Started')
-rw-r--r--commands/Getting Started/ping.js3
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 })
};