diff --git a/src/cache.ts b/src/cache.ts index e10b234b1..86df37a7f 100644 --- a/src/cache.ts +++ b/src/cache.ts @@ -82,6 +82,9 @@ export function createCache( presences: options.tableCreator(bot, "presences"), // threads: options.tableCreator(bot, "threads"), unavailableGuilds: options.tableCreator(bot, "unavailableGuilds"), + dispatchedGuildIds: new Set(), + dispatchedChannelIds: new Set(), + activeGuildIds: new Set(), executedSlashCommands: new Set(), fetchAllMembersProcessingRequests: new Map(), } as AsyncCache; @@ -103,6 +106,9 @@ export function createCache( presences: options.tableCreator(bot, "presences"), // threads: options.tableCreator(bot, "threads"), unavailableGuilds: options.tableCreator(bot, "unavailableGuilds"), + dispatchedGuildIds: new Set(), + dispatchedChannelIds: new Set(), + activeGuildIds: new Set(), executedSlashCommands: new Set(), fetchAllMembersProcessingRequests: new Map(), } as Cache;