1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-07-24 21:47:45 +00:00

Fix size of InitResponse opcode

This commit is contained in:
The Dax 2025-07-18 12:46:44 -04:00
parent ba2632ebd3
commit 20a7a9b46f
2 changed files with 2 additions and 2 deletions

View file

@ -33,7 +33,7 @@
{
"name": "InitResponse",
"opcode": 186,
"size": 16
"size": 14
},
{
"name": "LogOutComplete",

View file

@ -190,7 +190,7 @@ pub enum ServerZoneIpcData {
InitResponse {
unk1: u64,
character_id: u32,
unk2: u32,
unk2: u16,
},
/// Sent by the server that tells the client which zone to load
#[br(pre_assert(*magic == ServerZoneIpcType::InitZone))]