diff options
| -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 }) }; |
