diff options
| author | Alee <alee14498@gmail.com> | 2018-04-15 10:56:28 -0400 |
|---|---|---|
| committer | Alee <alee14498@gmail.com> | 2018-04-15 10:56:28 -0400 |
| commit | 4cad93e6c3f03f08a525d76ce94927b3b05e35c9 (patch) | |
| tree | 16d56f440e04aeeff7cb35b104b6ed2383c9a9ae /commands | |
| parent | ca40f7bf2547964ba3824b131e427e5df57e357b (diff) | |
| download | AleeBot-4cad93e6c3f03f08a525d76ce94927b3b05e35c9.tar.gz AleeBot-4cad93e6c3f03f08a525d76ce94927b3b05e35c9.tar.bz2 AleeBot-4cad93e6c3f03f08a525d76ce94927b3b05e35c9.zip | |
Add more things in the info command
Diffstat (limited to 'commands')
| -rw-r--r-- | commands/info.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/commands/info.js b/commands/info.js index bd4b3d4..9eb5d5a 100644 --- a/commands/info.js +++ b/commands/info.js @@ -21,11 +21,13 @@ module.exports.run = async (client, message) => { const Discord = require('discord.js'); const os = require('os'); const embed = new Discord.RichEmbed() - .setTitle('Information on AleeBot') + .setTitle('Information on AleeBot\'s Host') .addField('OS Hostname: ', os.hostname() , true) + .addField('NodeJS Version: ', process.versions.node , true) + .addField('OS Platform: ', os.platform() , true) + .addField('OS Version: ', os.release() , true) .setColor('#1fd619'); message.channel.send({embed}); - }; exports.conf = { |
