From 751568fb59117ab1fabe701b339e9ce9d634e5a4 Mon Sep 17 00:00:00 2001 From: MARCROCK22 <57925328+MARCROCK22@users.noreply.github.com> Date: Sat, 23 Mar 2024 22:26:05 -0400 Subject: [PATCH] fix: send identify properties --- src/websocket/discord/shard.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/websocket/discord/shard.ts b/src/websocket/discord/shard.ts index 590cf0c..98e3dd6 100644 --- a/src/websocket/discord/shard.ts +++ b/src/websocket/discord/shard.ts @@ -128,7 +128,7 @@ export class Shard { d: { token: `Bot ${this.options.token}`, compress: this.options.compress, - properties, + properties: this.options.properties ?? properties, shard: [this.id, this.options.info.shards], intents: this.options.intents, presence: this.options.presence,