diff --git a/src/util/util/Intents.ts b/src/util/util/Intents.ts index 25fd5f1..f19f9f4 100644 --- a/src/util/util/Intents.ts +++ b/src/util/util/Intents.ts @@ -52,5 +52,9 @@ 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); + static PRIVILEGED_FLAGS: BitField = new Intents( + Intents.FLAGS.GUILD_PRESENCES | + Intents.FLAGS.GUILD_MEMBERS | + Intents.FLAGS.GUILD_MESSAGES_CONTENT, + ); }