Hey, so today I got the guild presence intent added for my bot. However, simply including it in my presences causes the startup to fail.
Even without trying to actually do anything besides login, I get Error [ShardingReadyTimeout]: Shard 0's Client took too long to become ready.
This is the case if I have 2 shards or 10 shards. For reference, my bot is in just over 4k servers.
These are the intents I'm now requesting when the failure occurs:
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.GuildMembers,
GatewayIntentBits.GuildPresences,
]
I already have access for the Server Members Intent, and everything works fine if I simply comment out GatewayIntentBits.GuildPresences (except of course I cannot receive the guildMemberAdd and guildMemberRemove events)
Please help!
npm list discord.js: [email protected]
node -v: v16.13.0

