From b795a6e51b9ff69ed958f985908f81aff73022dc Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Tue, 20 Jul 2021 16:35:27 -0400 Subject: fixed caching --- src/lib/utils/BushCache.ts | 1 + src/lib/utils/BushConstants.ts | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'src/lib/utils') diff --git a/src/lib/utils/BushCache.ts b/src/lib/utils/BushCache.ts index e4eaf55..95c2346 100644 --- a/src/lib/utils/BushCache.ts +++ b/src/lib/utils/BushCache.ts @@ -12,5 +12,6 @@ class GlobalCache { export class BushCache { public static global = GlobalCache; + // eslint-disable-next-line @typescript-eslint/ban-types public static guilds = new Collection() } diff --git a/src/lib/utils/BushConstants.ts b/src/lib/utils/BushConstants.ts index 3ca2e8c..2d05425 100644 --- a/src/lib/utils/BushConstants.ts +++ b/src/lib/utils/BushConstants.ts @@ -80,7 +80,8 @@ export class BushConstants { USE_APPLICATION_COMMANDS: { name: 'Use Slash Commands', important: false }, REQUEST_TO_SPEAK: { name: 'Request to Speak', important: false }, USE_PUBLIC_THREADS: { name: 'Use public Threads', important: false }, - USE_PRIVATE_THREADS: { name: 'Use Private Threads', important: true } + USE_PRIVATE_THREADS: { name: 'Use Private Threads', important: false }, + MANAGE_THREADS: { name: 'Manage Threads', important: true} }, features: { -- cgit