mirror of
https://github.com/redstrate/Kawari.git
synced 2025-07-24 21:47:45 +00:00
Varbiable name nit.
This commit is contained in:
parent
61f53f0350
commit
a65e2f2bcc
2 changed files with 6 additions and 6 deletions
|
@ -863,8 +863,8 @@ async fn client_loop(
|
|||
data: ServerZoneIpcData::InventoryTransactionFinish {
|
||||
sequence: connection.player_data.item_sequence,
|
||||
sequence_repeat: connection.player_data.item_sequence,
|
||||
unk3: 0x90,
|
||||
unk4: 0x200,
|
||||
unk1: 0x90,
|
||||
unk2: 0x200,
|
||||
},
|
||||
..Default::default()
|
||||
};
|
||||
|
|
|
@ -431,9 +431,9 @@ pub enum ServerZoneIpcData {
|
|||
/// Repeated unk1 value. No, it's not a copy-paste error.
|
||||
sequence_repeat: u32,
|
||||
/// Unknown, seems to always be 0x00000090.
|
||||
unk3: u32,
|
||||
unk1: u32,
|
||||
/// Unknown, seems to always be 0x00000200.
|
||||
unk4: u32,
|
||||
unk2: u32,
|
||||
},
|
||||
#[br(pre_assert(*magic == ServerZoneIpcType::ContentFinderFound))]
|
||||
ContentFinderFound {
|
||||
|
@ -959,8 +959,8 @@ mod tests {
|
|||
ServerZoneIpcData::InventoryTransactionFinish {
|
||||
sequence: 0,
|
||||
sequence_repeat: 0,
|
||||
unk3: 0,
|
||||
unk4: 0,
|
||||
unk1: 0,
|
||||
unk2: 0,
|
||||
},
|
||||
),
|
||||
(
|
||||
|
|
Loading…
Add table
Reference in a new issue