From 9e4274512a01fd8596da37dd975ec5b8442fd789 Mon Sep 17 00:00:00 2001 From: Rory& Date: Sun, 8 Mar 2026 18:12:40 +0100 Subject: [PATCH] Migrate ReadyEventData to satisfies, part of #1577 --- src/gateway/opcodes/Identify.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gateway/opcodes/Identify.ts b/src/gateway/opcodes/Identify.ts index fd0b91fec..111325b09 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) {