diff options
Diffstat (limited to 'commands/Getting Started')
| -rw-r--r-- | commands/Getting Started/ping.js | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/commands/Getting Started/ping.js b/commands/Getting Started/ping.js index 365c9f4..0ae322d 100644 --- a/commands/Getting Started/ping.js +++ b/commands/Getting Started/ping.js @@ -8,7 +8,16 @@ * *************************************/ exports.run = (bot, msg) => { - msg.channel.send(':ping_pong: Pong! ' + Math.floor(bot.ping) + 'ms.'); + + const embed = new RichEmbed(); + embed + .setColor (0x00ae86) + .setDescription('Showing bot statistics:') + .setFooter('Pokebot 2.0 Alpha 1'); + + embed.addField('Client Heartbeat', Math.floor(bot.ping) + 'ms.'); + + msg.channel.send(embed) }; exports.conf = { |
