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

Fix the size of ItemObtainedLogMessage (#127)

Fix padding size of ItemObtainedLogMessage
This commit is contained in:
thedax 2025-07-19 13:36:09 -04:00 committed by GitHub
parent 234e804953
commit fbb144f84b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -313,7 +313,7 @@
{
"name": "ItemObtainedLogMessage",
"opcode": 456,
"size": 22
"size": 24
},
{
"name": "ContentFinderCommencing",

View file

@ -540,7 +540,7 @@ pub enum ServerZoneIpcData {
/// Always 2
params_count: u32,
item_id: u32,
#[brw(pad_after = 2)]
#[brw(pad_after = 4)]
/// Set to zero if only one item was obtained (stackable or not)
item_quantity: u32,
},