1 files changed, 0 insertions, 5 deletions
diff --git a/src/gateway/opcodes/Identify.ts b/src/gateway/opcodes/Identify.ts
index 20cb8094..322b427c 100644
--- a/src/gateway/opcodes/Identify.ts
+++ b/src/gateway/opcodes/Identify.ts
@@ -462,11 +462,6 @@ export async function onIdentify(this: WebSocket, data: Payload) {
})
.sort((a, b) => a.position - b.position);
- if (user.bot) {
- pending_guilds.push(member.guild);
- return { id: member.guild.id, unavailable: true };
- }
-
const threads: Channel[] = allThreads.filter((_) => _.guild_id === member.guild_id);
const guildjson = {
|