From 0e0932e22434646d71e5351eb88ecfd59569f1f8 Mon Sep 17 00:00:00 2001 From: SowinskiBraeden Date: Thu, 3 Nov 2022 13:19:25 -0700 Subject: [PATCH] 13.2.1 update config view --- commands/config.js | 2 ++ config/config.js | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/commands/config.js b/commands/config.js index 11e6f91..58834bb 100644 --- a/commands/config.js +++ b/commands/config.js @@ -925,6 +925,7 @@ module.exports = { const dispatchChannelColor = GuildDB.dispatchChannel ? `+ ` : '- '; const botAdminRole = GuildDB.botAdmin ? `\n╚➤ <@&${GuildDB.botAdmin}>` : ''; const botAdminRoleColor = GuildDB.botAdmin ? `+ ` : '- '; + const workLimit = GuildDB.workLimiter; const settingsEmbed = new EmbedBuilder() .setColor(client.config.Colors.Default) @@ -944,6 +945,7 @@ module.exports = { { name: 'Has Dispatch Channel?', value: `\`\`\`diff\n${dispatchChannelColor}${client.exists(GuildDB.dispatchChannel)}\`\`\`${dispatchChannel}`, inline: true }, { name: 'Has bot admin role?', value: `\`\`\`diff\n${botAdminRoleColor}${client.exists(GuildDB.botAdmin)}\`\`\`${botAdminRole}`, inline: true }, { name: 'Can Dismiss Invoices?', value: `\`\`\`diff\n${GuildDB.canDismissInvoices ? '+ ' : '- '}${GuildDB.canDismissInvoices}\`\`\``, inline: true }, + { name: 'Work Limiter (Hours)', value: `\`\`\`${workLimit}hr\`\`\``, inline: true }, ); return interaction.send({ embeds: [settingsEmbed] }); diff --git a/config/config.js b/config/config.js index d72daba..1119d14 100644 --- a/config/config.js +++ b/config/config.js @@ -2,7 +2,7 @@ require('dotenv').config(); module.exports = { Dev: "PROD.", - Version: "13.2.0", // (major).(feature).(revision/bug/refactoring) + Version: "13.2.1", // (major).(feature).(revision/bug/refactoring) Admins: ["362791661274660874", "329371697570381824"], // Admins of the bot DefaultPrefix: "?", ServerID: "955668596745461830",