From bf5043b11f47e1c2c1f251c29a127f1df0487acc Mon Sep 17 00:00:00 2001 From: Braeden Sowinski Date: Sat, 15 Oct 2022 17:01:28 -0700 Subject: [PATCH] 12.8.1 embed color revisions --- commands/311.js | 2 +- commands/911.js | 2 +- commands/fine.js | 6 +++--- commands/work-roles.js | 2 +- config/config.js | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/commands/311.js b/commands/311.js index f42ad1c..f4eb532 100644 --- a/commands/311.js +++ b/commands/311.js @@ -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}`) diff --git a/commands/911.js b/commands/911.js index 85e9c5b..b1e08a9 100644 --- a/commands/911.js +++ b/commands/911.js @@ -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}`) diff --git a/commands/fine.js b/commands/fine.js index 257696e..29065c3 100644 --- a/commands/fine.js +++ b/commands/fine.js @@ -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] }); } diff --git a/commands/work-roles.js b/commands/work-roles.js index 835ef54..05bda6f 100644 --- a/commands/work-roles.js +++ b/commands/work-roles.js @@ -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] }); } diff --git a/config/config.js b/config/config.js index f6019dc..12593db 100644 --- a/config/config.js +++ b/config/config.js @@ -2,7 +2,7 @@ require('dotenv').config(); module.exports = { 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 DefaultPrefix: "?", ServerID: "955668596745461830",