mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-29 15:00:07 +00:00
14 lines
424 B
TypeScript
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>();
|