remove SunCountry

This commit is contained in:
Jonny_Bro (Nikita) 2023-10-20 22:44:55 +05:00
parent f18f32bc4d
commit ce93a65178
2 changed files with 2 additions and 2 deletions

1
.d.ts vendored
View file

@ -35,7 +35,6 @@ interface Dashboard {
key: string
cert: string
}
minimizedConsoleLogs?: boolean
rateLimits?: {
manage?: RateLimitSettingsObject
guildPage?: RateLimitSettingsObject

View file

@ -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 => {