From ce93a651789896da872562d954256db46e424499 Mon Sep 17 00:00:00 2001 From: "Jonny_Bro (Nikita)" Date: Fri, 20 Oct 2023 22:44:55 +0500 Subject: [PATCH] remove SunCountry --- .d.ts | 1 - theme/dbd-soft-ui/utils/cmdHandler.js | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) 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 => {