mirror of
https://github.com/redstrate/Kawari.git
synced 2025-07-09 15:37:45 +00:00
Fix size of InventoryActionAck (#104)
-If it's 16 bytes, there can't be 12 bytes of padding, 4 bytes of u32 and 2 bytes of u16. :)
This commit is contained in:
parent
2f1aee9d09
commit
68f6747598
1 changed files with 1 additions and 1 deletions
|
@ -325,7 +325,7 @@ pub enum ServerZoneIpcData {
|
|||
#[br(pre_assert(*magic == ServerZoneIpcType::InventoryActionAck))]
|
||||
InventoryActionAck {
|
||||
sequence: u32,
|
||||
#[brw(pad_after = 12)]
|
||||
#[brw(pad_after = 10)]
|
||||
action_type: u16,
|
||||
},
|
||||
#[br(pre_assert(*magic == ServerZoneIpcType::UnkCall))]
|
||||
|
|
Loading…
Add table
Reference in a new issue