From a12625ac299a3bc23da4be97ed1b046be584cacb Mon Sep 17 00:00:00 2001 From: Braeden Sowinski Date: Wed, 12 Oct 2022 19:31:13 -0700 Subject: [PATCH] 12.7.13 fix color codes --- commands/settings.js | 2 +- commands/work.js | 2 +- config/config.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/settings.js b/commands/settings.js index 2ea0a7d..645d522 100644 --- a/commands/settings.js +++ b/commands/settings.js @@ -594,7 +594,7 @@ module.exports = { }); let successEmbed = new EmbedBuilder() - .setColor('GREEN') + .setColor(client.config.Colors.Green) .setDescription(`Successfully set $${args[0].options[0].value.toFixed(2)} as starting balance`); return interaction.send({ embeds: [successEmbed] }); diff --git a/commands/work.js b/commands/work.js index 819005a..babe379 100644 --- a/commands/work.js +++ b/commands/work.js @@ -120,7 +120,7 @@ module.exports = { }); const success = new EmbedBuilder() - .setColor('GREEN') + .setColor(client.config.Colors.Green) .setDescription(`You worked your job <@&${job}> and earned $${earned}.`) return interaction.send({ embeds: [success] }) diff --git a/config/config.js b/config/config.js index 932911a..292645b 100644 --- a/config/config.js +++ b/config/config.js @@ -2,7 +2,7 @@ require('dotenv').config(); module.exports = { Dev: "PROD.", - Version: "12.7.12", + Version: "12.7.13", Admins: ["362791661274660874", "329371697570381824"], // Admins of the bot DefaultPrefix: "?", ServerID: "955668596745461830",