diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-20 16:36:23 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-20 16:36:23 -0400 |
commit | 5c242f597595b8db71875d92c0afe0a5947442a6 (patch) | |
tree | 13c2878b1e6368f17dd349194c320d2518fe2a9d /src/lib/utils | |
parent | b795a6e51b9ff69ed958f985908f81aff73022dc (diff) | |
parent | e2787c5a15e6b9a0c00bc7ed31fe3d1774fb8ff1 (diff) | |
download | tanzanite-5c242f597595b8db71875d92c0afe0a5947442a6.tar.gz tanzanite-5c242f597595b8db71875d92c0afe0a5947442a6.tar.bz2 tanzanite-5c242f597595b8db71875d92c0afe0a5947442a6.zip |
Merge branch 'rewrite' of https://github.com/NotEnoughUpdates/bush-bot into rewrite
Diffstat (limited to 'src/lib/utils')
-rw-r--r-- | src/lib/utils/BushCache.ts | 4 | ||||
-rw-r--r-- | src/lib/utils/BushConstants.ts | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/lib/utils/BushCache.ts b/src/lib/utils/BushCache.ts index 95c2346..f9def5e 100644 --- a/src/lib/utils/BushCache.ts +++ b/src/lib/utils/BushCache.ts @@ -9,9 +9,7 @@ class GlobalCache { public static blacklistedUsers = new Array<Snowflake>(); } - export class BushCache { public static global = GlobalCache; - // eslint-disable-next-line @typescript-eslint/ban-types - public static guilds = new Collection<Snowflake, Guild>() + public static guilds = new Collection<Snowflake, Guild>(); } diff --git a/src/lib/utils/BushConstants.ts b/src/lib/utils/BushConstants.ts index 2d05425..5a99798 100644 --- a/src/lib/utils/BushConstants.ts +++ b/src/lib/utils/BushConstants.ts @@ -81,7 +81,7 @@ export class BushConstants { 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: false }, - MANAGE_THREADS: { name: 'Manage Threads', important: true} + MANAGE_THREADS: { name: 'Manage Threads', important: true } }, features: { |