aboutsummaryrefslogtreecommitdiff
path: root/commands/Utility/info.js
diff options
context:
space:
mode:
authorAlee <alee14498@gmail.com>2018-08-01 22:53:58 -0400
committerAlee <alee14498@gmail.com>2018-08-01 22:53:58 -0400
commitad5ced94e9212fff66877a8abc393b6996bde934 (patch)
treef79c5d77df5c9c107a6d10f81be5e26d9e23b17f /commands/Utility/info.js
parent5881cae922e44a93cff005f497dd02e7bbdfaee9 (diff)
downloadPokeBot-ad5ced94e9212fff66877a8abc393b6996bde934.tar.gz
PokeBot-ad5ced94e9212fff66877a8abc393b6996bde934.tar.bz2
PokeBot-ad5ced94e9212fff66877a8abc393b6996bde934.zip
things
Diffstat (limited to 'commands/Utility/info.js')
-rw-r--r--commands/Utility/info.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/Utility/info.js b/commands/Utility/info.js
index d75e399..3e8a40f 100644
--- a/commands/Utility/info.js
+++ b/commands/Utility/info.js
@@ -10,12 +10,12 @@ module.exports.run = async (client, message) => {
const Discord = require('discord.js');
const os = require('os');
const embed = new Discord.RichEmbed()
- .setTitle('Information on AleeBot\'s Host')
+ .setTitle('Information on Galaxy\'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');
+ .setColor(0x36393e);
message.channel.send({embed});
};