From 1f9e2a5f7c8996978aa0859d18189ca74a113a2b Mon Sep 17 00:00:00 2001 From: Alee14 Date: Mon, 31 Jul 2017 17:07:33 -0400 Subject: Changing the color on some embed commands --- aleebot.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'aleebot.js') 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); } -- cgit v1.2.3