aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--commands/info.js6
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 = {