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';
|
: 'Error';
|
||||||
|
|
||||||
const errorEmbed = new EmbedBuilder()
|
const errorEmbed = new EmbedBuilder()
|
||||||
.setColor(client.config.Colors.Red)
|
.setColor(client.config.Colors.Yellow)
|
||||||
.setTitle("Notice:")
|
.setTitle("Notice:")
|
||||||
.setDescription(`An admin needs to configure the following:\n${configure}`)
|
.setDescription(`An admin needs to configure the following:\n${configure}`)
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -75,7 +75,7 @@ module.exports = {
|
|||||||
: 'Error';
|
: 'Error';
|
||||||
|
|
||||||
const errorEmbed = new EmbedBuilder()
|
const errorEmbed = new EmbedBuilder()
|
||||||
.setColor(client.config.Colors.Red)
|
.setColor(client.config.Colors.Yellow)
|
||||||
.setTitle("Notice:")
|
.setTitle("Notice:")
|
||||||
.setDescription(`An admin needs to configure the following:\n${configure}`)
|
.setDescription(`An admin needs to configure the following:\n${configure}`)
|
||||||
|
|
||||||
|
|||||||
+3
-3
@@ -43,7 +43,7 @@ module.exports = {
|
|||||||
|
|
||||||
if (!GuildDB.officerRole) {
|
if (!GuildDB.officerRole) {
|
||||||
const embed = EmbedBuilder()
|
const embed = EmbedBuilder()
|
||||||
.setColor(client.config.Colors.Red)
|
.setColor(client.config.Colors.Yellow)
|
||||||
.setDescription("**Notice:** The admins have not set an officer role.")
|
.setDescription("**Notice:** The admins have not set an officer role.")
|
||||||
|
|
||||||
return interaction.send({ embeds: [embed] });
|
return interaction.send({ embeds: [embed] });
|
||||||
@@ -51,8 +51,8 @@ module.exports = {
|
|||||||
|
|
||||||
if (!interaction.member.roles.includes(GuildDB.officerRole)) {
|
if (!interaction.member.roles.includes(GuildDB.officerRole)) {
|
||||||
const embed = EmbedBuilder()
|
const embed = EmbedBuilder()
|
||||||
.setColor(client.config.Colors.Red)
|
.setColor(client.config.Colors.Yellow)
|
||||||
.setDescription(`**Notice: You require the <@&${GuildDB.officerRole}>**`)
|
.setDescription(`**Notice:** You require the <@&${GuildDB.officerRole}>`)
|
||||||
|
|
||||||
return interaction.send({ embeds: [embed] });
|
return interaction.send({ embeds: [embed] });
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ module.exports = {
|
|||||||
} else {
|
} else {
|
||||||
let noRoles = new EmbedBuilder()
|
let noRoles = new EmbedBuilder()
|
||||||
.setColor(client.config.Colors.Default)
|
.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] });
|
return interaction.send({ embeds: [noRoles] });
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -2,7 +2,7 @@ require('dotenv').config();
|
|||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
Dev: "PROD.",
|
Dev: "PROD.",
|
||||||
Version: "12.8.0", // (major).(feature).(revision/bug/refactoring)
|
Version: "12.8.1", // (major).(feature).(revision/bug/refactoring)
|
||||||
Admins: ["362791661274660874", "329371697570381824"], // Admins of the bot
|
Admins: ["362791661274660874", "329371697570381824"], // Admins of the bot
|
||||||
DefaultPrefix: "?",
|
DefaultPrefix: "?",
|
||||||
ServerID: "955668596745461830",
|
ServerID: "955668596745461830",
|
||||||
|
|||||||
Reference in new issue
Block a user