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 +}