From 4cad93e6c3f03f08a525d76ce94927b3b05e35c9 Mon Sep 17 00:00:00 2001 From: Alee Date: Sun, 15 Apr 2018 10:56:28 -0400 Subject: Add more things in the info command --- commands/info.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'commands') 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 = { -- cgit v1.2.3