From 2c2694276ddf1745e12e9ddaed5c0a6bb1f2c554 Mon Sep 17 00:00:00 2001 From: Jabu2 <31703017+Jabu2@users.noreply.github.com> Date: Wed, 9 Oct 2019 23:49:50 +0200 Subject: [PATCH] Update say.js typo --- Ep_03/commands/moderation/say.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ep_03/commands/moderation/say.js b/Ep_03/commands/moderation/say.js index 0bda37d..b2347d9 100644 --- a/Ep_03/commands/moderation/say.js +++ b/Ep_03/commands/moderation/say.js @@ -20,11 +20,11 @@ module.exports = { if (args[0].toLowerCase() === "embed") { const embed = new RichEmbed() .setDescription(args.slice(1).join(" ")) - .setColor(roleColor === "#000000" ? "#ffffff" : roleColorv); + .setColor(roleColor === "#000000" ? "#ffffff" : roleColor); message.channel.send(embed); } else { message.channel.send(args.join(" ")); } } -} \ No newline at end of file +}