Files
discordeno/tests/constants.ts
2021-12-02 16:24:41 +00:00

14 lines
424 B
TypeScript

export const CACHED_COMMUNITY_GUILD_ID = 907350958810480671n;
// CHANGE TO TRUE WHEN DEBUGGING SANITIZATION ERRORS
export const sanitizeMode = {
sanitizeResources: false,
sanitizeOps: false,
sanitizeExit: false,
};
// USED FOR ROLE CHANGE EVENTS
export const roleChanges = new Map<bigint, bigint[]>();
export const banCounters = new Map<bigint, boolean>();
export const reactionCounters = new Map<bigint, number>();