From cae01b3a35569e0c297ecc040876ac1706a35693 Mon Sep 17 00:00:00 2001 From: thedax Date: Fri, 18 Jul 2025 17:42:36 -0400 Subject: [PATCH] Fix the InitResponse fix (#125) -It's 16, not 14. --- resources/opcodes.json | 2 +- src/ipc/zone/mod.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/opcodes.json b/resources/opcodes.json index 00400e0..6c8b13b 100644 --- a/resources/opcodes.json +++ b/resources/opcodes.json @@ -33,7 +33,7 @@ { "name": "InitResponse", "opcode": 279, - "size": 14 + "size": 16 }, { "name": "LogOutComplete", diff --git a/src/ipc/zone/mod.rs b/src/ipc/zone/mod.rs index 7116129..8732117 100644 --- a/src/ipc/zone/mod.rs +++ b/src/ipc/zone/mod.rs @@ -190,7 +190,7 @@ pub enum ServerZoneIpcData { InitResponse { unk1: u64, character_id: u32, - unk2: u16, + unk2: u32, }, /// Sent by the server that tells the client which zone to load #[br(pre_assert(*magic == ServerZoneIpcType::InitZone))]