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

Fix the InitResponse fix (#125)

-It's 16, not 14.
This commit is contained in:
thedax 2025-07-18 17:42:36 -04:00 committed by GitHub
parent 2149244670
commit cae01b3a35
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

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

View file

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