From c8d2500892b3132a3fc3d1c4bd5fe80a3f17d8e8 Mon Sep 17 00:00:00 2001 From: MARCROCK22 Date: Sat, 1 Jun 2024 20:17:47 +0000 Subject: [PATCH] fix: raw event --- src/client/client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/client.ts b/src/client/client.ts index f382971..73aa51f 100644 --- a/src/client/client.ts +++ b/src/client/client.ts @@ -132,7 +132,7 @@ export class Client extends BaseClient { } protected async onPacket(shardId: number, packet: GatewayDispatchPayload) { - // await this.events?.runEvent('RAW', this, packet, shardId); + await this.events?.runEvent('RAW', this, packet, shardId); switch (packet.t) { //// Cases where we must obtain the old data before updating case 'GUILD_MEMBER_UPDATE':