12.8.1 embed color revisions
This commit is contained in:
5 files changed
+7
-7
No files matched your search
+1
-1
@@ -74,7 +74,7 @@ module.exports = {
|
||||
: 'Error';
|
||||
|
||||
const errorEmbed = new EmbedBuilder()
|
||||
.setColor(client.config.Colors.Red)
|
||||
.setColor(client.config.Colors.Yellow)
|
||||
.setTitle("Notice:")
|
||||
.setDescription(`An admin needs to configure the following:\n${configure}`)
|
||||
|
||||
|
||||
+1
-1
@@ -75,7 +75,7 @@ module.exports = {
|
||||
: 'Error';
|
||||
|
||||
const errorEmbed = new EmbedBuilder()
|
||||
.setColor(client.config.Colors.Red)
|
||||
.setColor(client.config.Colors.Yellow)
|
||||
.setTitle("Notice:")
|
||||
.setDescription(`An admin needs to configure the following:\n${configure}`)
|
||||
|
||||
|
||||
+3
-3
@@ -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] });
|
||||
}
|
||||
|
||||
@@ -41,7 +41,7 @@ module.exports = {
|
||||
} else {
|
||||
let noRoles = new EmbedBuilder()
|
||||
.setColor(client.config.Colors.Default)
|
||||
.setDescription('**QuarksBot Notice:** There are no income roles')
|
||||
.setDescription('**Notice:** There are no income roles')
|
||||
|
||||
return interaction.send({ embeds: [noRoles] });
|
||||
}
|
||||
|
||||
Reference in new issue
Block a user