We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 238ba38 + 55d6e09 commit a7d1585Copy full SHA for a7d1585
Ep_04/commands/moderation/say.js
@@ -19,11 +19,11 @@ module.exports = {
19
if (args[0].toLowerCase() === "embed") {
20
const embed = new RichEmbed()
21
.setDescription(args.slice(1).join(" "))
22
- .setColor(roleColor === "#000000" ? "#ffffff" : roleColorv);
+ .setColor(roleColor === "#000000" ? "#ffffff" : roleColor);
23
24
message.channel.send(embed);
25
} else {
26
message.channel.send(args.join(" "));
27
}
28
29
-}
+}
0 commit comments