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

+1 -1
View File
@@ -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
View File
@@ -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
View File
@@ -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] });
} }
+1 -1
View File
@@ -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
View File
@@ -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",