12.8.1 embed color revisions

This commit is contained in:
SowinskiBraeden committed 2022-10-15 17:01:28 -07:00
1 parent b4192bf231
commit bf5043b11f
5 files changed
+7 -7

No files matched your search

+3 -3
View File
@@ -43,7 +43,7 @@ module.exports = {
if (!GuildDB.officerRole) {
const embed = EmbedBuilder()
.setColor(client.config.Colors.Red)
.setColor(client.config.Colors.Yellow)
.setDescription("**Notice:** The admins have not set an officer role.")
return interaction.send({ embeds: [embed] });
@@ -51,8 +51,8 @@ module.exports = {
if (!interaction.member.roles.includes(GuildDB.officerRole)) {
const embed = EmbedBuilder()
.setColor(client.config.Colors.Red)
.setDescription(`**Notice: You require the <@&${GuildDB.officerRole}>**`)
.setColor(client.config.Colors.Yellow)
.setDescription(`**Notice:** You require the <@&${GuildDB.officerRole}>`)
return interaction.send({ embeds: [embed] });
}