diff options
| author | Alee14 <Alee14498@gmail.com> | 2017-07-31 17:07:33 -0400 |
|---|---|---|
| committer | Alee14 <Alee14498@gmail.com> | 2017-07-31 17:07:33 -0400 |
| commit | 1f9e2a5f7c8996978aa0859d18189ca74a113a2b (patch) | |
| tree | c996f6d5a83f52b880c3fa62fd7a84fc79ff52bf /aleebot.js | |
| parent | 564ae693a1746a975ae5c27eb1fa5bb1b0ec7840 (diff) | |
| download | AleeBot-1f9e2a5f7c8996978aa0859d18189ca74a113a2b.tar.gz AleeBot-1f9e2a5f7c8996978aa0859d18189ca74a113a2b.tar.bz2 AleeBot-1f9e2a5f7c8996978aa0859d18189ca74a113a2b.zip | |
Changing the color on some embed commands
Diffstat (limited to 'aleebot.js')
| -rw-r--r-- | aleebot.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -95,7 +95,7 @@ client.on("message", function(message){ '**'+prefix+'serverinvite** Invites you to the AleeArmy Server.\n' + '**'+prefix+'mod** (For staff only) Displays the commands for moderation.\n', true) .setFooter("AleeBot Copyright 2017. The version that AleeBot's running is " + ver + "!") - .setColor(0x00FFFF) + .setColor("#7af442") message.channel.sendEmbed(embed); } @@ -124,7 +124,7 @@ client.on("message", function(message){ var embed = new Discord.RichEmbed() .setAuthor(message.author.username) .setDescription("This is your user info!") - .setColor(0x00FFFF) + .setColor("#7af442") .addField("Username", `${message.author.username}#${message.author.discriminator}`) .addField("Created At", message.author.createdAt) message.channel.sendEmbed(embed); @@ -134,7 +134,7 @@ client.on("message", function(message){ if(command === 'serverinfo'){ var embed = new Discord.RichEmbed() .addField("Coming soon!") - .setColor(0x00FFFF) + .setColor("#7af442") message.channel.sendEmbed(embed); } |
