aboutsummaryrefslogtreecommitdiff
path: root/src/lib/utils/BushCache.ts
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-07-20 16:36:23 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-07-20 16:36:23 -0400
commit5c242f597595b8db71875d92c0afe0a5947442a6 (patch)
tree13c2878b1e6368f17dd349194c320d2518fe2a9d /src/lib/utils/BushCache.ts
parentb795a6e51b9ff69ed958f985908f81aff73022dc (diff)
parente2787c5a15e6b9a0c00bc7ed31fe3d1774fb8ff1 (diff)
downloadtanzanite-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/BushCache.ts')
-rw-r--r--src/lib/utils/BushCache.ts4
1 files changed, 1 insertions, 3 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>();
}