mirror of
https://github.com/redstrate/Kawari.git
synced 2025-07-17 10:47:44 +00:00
Add XiCharacterInfo IPC opcode
I don't know what this is, I got the name from Sapphire.
This commit is contained in:
parent
49003a4d89
commit
822f693f8c
2 changed files with 8 additions and 0 deletions
|
@ -473,6 +473,11 @@
|
|||
"name": "DistRetainerInfo",
|
||||
"opcode": 23,
|
||||
"size": 536
|
||||
},
|
||||
{
|
||||
"name": "XiCharacterInfo",
|
||||
"opcode": 22,
|
||||
"size": 496
|
||||
}
|
||||
],
|
||||
"ClientLobbyIpcType": [
|
||||
|
|
|
@ -203,6 +203,9 @@ pub enum ServerLobbyIpcData {
|
|||
/// Sent by the server to inform the client of their retainers.
|
||||
#[br(pre_assert(*magic == ServerLobbyIpcType::DistRetainerInfo))]
|
||||
DistRetainerInfo(DistRetainerInfo),
|
||||
/// Unknown purpose
|
||||
#[br(pre_assert(*magic == ServerLobbyIpcType::XiCharacterInfo))]
|
||||
XiCharacterInfo { unk: [u8; 496] },
|
||||
Unknown {
|
||||
#[br(count = size - 32)]
|
||||
unk: Vec<u8>,
|
||||
|
|
Loading…
Add table
Reference in a new issue