aboutsummaryrefslogtreecommitdiff
path: root/lib/common
diff options
context:
space:
mode:
Diffstat (limited to 'lib/common')
-rw-r--r--lib/common/BotCache.ts (renamed from lib/common/BushCache.ts)2
-rw-r--r--lib/common/HighlightManager.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/common/BushCache.ts b/lib/common/BotCache.ts
index 22a13ef..e91d9e5 100644
--- a/lib/common/BushCache.ts
+++ b/lib/common/BotCache.ts
@@ -1,7 +1,7 @@
import { BadWords, GlobalModel, SharedModel, type Guild } from '#lib';
import { Collection, type Snowflake } from 'discord.js';
-export class BushCache {
+export class BotCache {
public global = new GlobalCache();
public shared = new SharedCache();
public guilds = new GuildCache();
diff --git a/lib/common/HighlightManager.ts b/lib/common/HighlightManager.ts
index cc31413..ca71a83 100644
--- a/lib/common/HighlightManager.ts
+++ b/lib/common/HighlightManager.ts
@@ -10,7 +10,7 @@ import {
type Snowflake,
type TextBasedChannel
} from 'discord.js';
-import { colors, Time } from '../utils/BushConstants.js';
+import { colors, Time } from '../utils/Constants.js';
import { sanitizeInputForDiscord } from '../utils/Format.js';
const NOTIFY_COOLDOWN = 5 * Time.Minute;