diff --git a/src/util/util/Intents.ts b/src/util/util/Intents.ts index 9c9b0f37..611d2da4 100644 --- a/src/util/util/Intents.ts +++ b/src/util/util/Intents.ts @@ -48,4 +48,6 @@ export class Intents extends BitField { INSTANCE_POLICY_UPDATES: BigInt(1) << BigInt(62), // all instance policy updates INSTANCE_USER_UPDATES: BigInt(1) << BigInt(63), // all instance user updates }; + + static PRIVILEGED_FLAGS: BitField = new Intents(Intents.FLAGS.GUILD_PRESENCES | Intents.FLAGS.GUILD_MEMBERS | Intents.FLAGS.GUILD_MESSAGES_CONTENT); }