diff --git a/.d.ts b/.d.ts index f373d54..aa41c7a 100644 --- a/.d.ts +++ b/.d.ts @@ -35,7 +35,6 @@ interface Dashboard { key: string cert: string } - minimizedConsoleLogs?: boolean rateLimits?: { manage?: RateLimitSettingsObject guildPage?: RateLimitSettingsObject diff --git a/theme/dbd-soft-ui/utils/cmdHandler.js b/theme/dbd-soft-ui/utils/cmdHandler.js index 475ab48..b7655e4 100644 --- a/theme/dbd-soft-ui/utils/cmdHandler.js +++ b/theme/dbd-soft-ui/utils/cmdHandler.js @@ -10,7 +10,8 @@ module.exports = (commands, prefix) => { }); for (const category of categories) { - if (category.toLowerCase().includes("admin") || category.toLowerCase().includes("owner") || category.toLowerCase().includes("development") || category.toLowerCase().includes("suncountry") || category.toLowerCase().includes("iat")) continue; + if (category.toLowerCase().includes("admin") || category.toLowerCase().includes("owner") || category.toLowerCase().includes("development") || category.toLowerCase().includes("iat")) continue; + const commandsArr = []; commands.filter(cmd => cmd.category === category).map(cmd => {