1 files changed, 1 insertions, 1 deletions
diff --git a/src/gateway/opcodes/Identify.ts b/src/gateway/opcodes/Identify.ts
index fd0b91fe..111325b0 100644
--- a/src/gateway/opcodes/Identify.ts
+++ b/src/gateway/opcodes/Identify.ts
@@ -682,7 +682,7 @@ export async function onIdentify(this: WebSocket, data: Payload) {
flags: 0,
},
game_relationships: [],
- } as ReadyEventData;
+ } satisfies ReadyEventData;
});
if (this.capabilities.has(Capabilities.FLAGS.AUTH_TOKEN_REFRESH) && tokenData.tokenVersion != CurrentTokenFormatVersion) {
|