diff options
| author | Alee <alee14498@gmail.com> | 2018-08-01 22:53:58 -0400 |
|---|---|---|
| committer | Alee <alee14498@gmail.com> | 2018-08-01 22:53:58 -0400 |
| commit | ad5ced94e9212fff66877a8abc393b6996bde934 (patch) | |
| tree | f79c5d77df5c9c107a6d10f81be5e26d9e23b17f /commands | |
| parent | 5881cae922e44a93cff005f497dd02e7bbdfaee9 (diff) | |
| download | PokeBot-ad5ced94e9212fff66877a8abc393b6996bde934.tar.gz PokeBot-ad5ced94e9212fff66877a8abc393b6996bde934.tar.bz2 PokeBot-ad5ced94e9212fff66877a8abc393b6996bde934.zip | |
things
Diffstat (limited to 'commands')
| -rw-r--r-- | commands/Utility/info.js | 4 | ||||
| -rw-r--r-- | commands/Utility/quote.js | 2 | ||||
| -rw-r--r-- | commands/Utility/vtquote.js | 2 |
3 files changed, 4 insertions, 4 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}); }; diff --git a/commands/Utility/quote.js b/commands/Utility/quote.js index 8098400..4ddefce 100644 --- a/commands/Utility/quote.js +++ b/commands/Utility/quote.js @@ -28,7 +28,7 @@ let NewQuote; const url = quo.url; NewQuote.setAuthor(author, authorImage); - NewQuote.setColor('#1fd619'); + NewQuote.setColor(0x36393e); NewQuote.setDescription(quote); NewQuote.setFooter('- ' + year); NewQuote.setURL(url); diff --git a/commands/Utility/vtquote.js b/commands/Utility/vtquote.js index ec85888..ad94c2c 100644 --- a/commands/Utility/vtquote.js +++ b/commands/Utility/vtquote.js @@ -28,7 +28,7 @@ module.exports.run = async (client, message) => { const url = quo.url; VictorQuote.setAuthor(author, authorImage); - VictorQuote.setColor('#1fd619'); + VictorQuote.setColor(0x36393e); VictorQuote.setDescription(quote); VictorQuote.setFooter('- ' + year); VictorQuote.setURL(url); |
