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

Fix size and opcode value of InitResponse (#123)

* Fix size of InitResponse opcode

* Fix opcode value for InitResponse
This commit is contained in:
thedax 2025-07-18 16:10:37 -04:00 committed by GitHub
parent aa54da2b03
commit b608d32590
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -32,8 +32,8 @@
},
{
"name": "InitResponse",
"opcode": 186,
"size": 16
"opcode": 279,
"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))]