From 91c63f05ca1e8e92c4c1df124365405fe8d34108 Mon Sep 17 00:00:00 2001 From: Jan <66554238+Vaporox@users.noreply.github.com> Date: Sun, 18 Oct 2020 13:31:20 +0200 Subject: [PATCH] fix(GatewayIdentify): use correct presence interface (#28) --- v8/gateway/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v8/gateway/index.ts b/v8/gateway/index.ts index 87fea71f..a78c8701 100644 --- a/v8/gateway/index.ts +++ b/v8/gateway/index.ts @@ -605,7 +605,7 @@ export interface GatewayIdentify { large_threshold?: number; // eslint-disable-next-line prettier/prettier shard?: [shard_id: number, shard_count: number]; - presence?: RawGatewayPresenceUpdate; + presence?: GatewayPresenceUpdateData; guild_subscriptions?: boolean; intents: number; };