remove SunCountry
This commit is contained in:
parent
f18f32bc4d
commit
ce93a65178
2 changed files with 2 additions and 2 deletions
1
.d.ts
vendored
1
.d.ts
vendored
|
@ -35,7 +35,6 @@ interface Dashboard {
|
||||||
key: string
|
key: string
|
||||||
cert: string
|
cert: string
|
||||||
}
|
}
|
||||||
minimizedConsoleLogs?: boolean
|
|
||||||
rateLimits?: {
|
rateLimits?: {
|
||||||
manage?: RateLimitSettingsObject
|
manage?: RateLimitSettingsObject
|
||||||
guildPage?: RateLimitSettingsObject
|
guildPage?: RateLimitSettingsObject
|
||||||
|
|
|
@ -10,7 +10,8 @@ module.exports = (commands, prefix) => {
|
||||||
});
|
});
|
||||||
|
|
||||||
for (const category of categories) {
|
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 = [];
|
const commandsArr = [];
|
||||||
|
|
||||||
commands.filter(cmd => cmd.category === category).map(cmd => {
|
commands.filter(cmd => cmd.category === category).map(cmd => {
|
||||||
|
|
Loading…
Reference in a new issue