aboutsummaryrefslogtreecommitdiff
path: root/aleebot.js
diff options
context:
space:
mode:
authorAlee14 <Alee14498@gmail.com>2017-07-31 17:07:33 -0400
committerAlee14 <Alee14498@gmail.com>2017-07-31 17:07:33 -0400
commit1f9e2a5f7c8996978aa0859d18189ca74a113a2b (patch)
treec996f6d5a83f52b880c3fa62fd7a84fc79ff52bf /aleebot.js
parent564ae693a1746a975ae5c27eb1fa5bb1b0ec7840 (diff)
downloadAleeBot-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.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/aleebot.js b/aleebot.js
index 6d6e0bb..703f4e4 100644
--- a/aleebot.js
+++ b/aleebot.js
@@ -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);
}