From f6495ee17a00771ea3d191f3e0c2ab067f3f101b Mon Sep 17 00:00:00 2001 From: dragonfire535 Date: Sun, 5 Mar 2017 22:02:29 -0500 Subject: [PATCH] Change Define Embed Color --- commands/search/define.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/search/define.js b/commands/search/define.js index 5508e60b..c03e506b 100644 --- a/commands/search/define.js +++ b/commands/search/define.js @@ -28,9 +28,9 @@ class DefineCommand extends commando.Command { } request(options).then(function (response) { const embed = new Discord.RichEmbed() - .setColor(0xF89C34) + .setColor(0x0000FF) .setTitle(definethis) - .setDescription(response[0].defenition) + .setDescription(response[0].defenition); message.channel.sendEmbed(embed).catch(console.error); }).catch(function (err) { message.channel.sendMessage(":x: Error! Word not Found!");