mirror of
https://github.com/redstrate/Kawari.git
synced 2025-07-20 03:37:46 +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",
|
"name": "DistRetainerInfo",
|
||||||
"opcode": 23,
|
"opcode": 23,
|
||||||
"size": 536
|
"size": 536
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "XiCharacterInfo",
|
||||||
|
"opcode": 22,
|
||||||
|
"size": 496
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ClientLobbyIpcType": [
|
"ClientLobbyIpcType": [
|
||||||
|
|
|
@ -203,6 +203,9 @@ pub enum ServerLobbyIpcData {
|
||||||
/// Sent by the server to inform the client of their retainers.
|
/// Sent by the server to inform the client of their retainers.
|
||||||
#[br(pre_assert(*magic == ServerLobbyIpcType::DistRetainerInfo))]
|
#[br(pre_assert(*magic == ServerLobbyIpcType::DistRetainerInfo))]
|
||||||
DistRetainerInfo(DistRetainerInfo),
|
DistRetainerInfo(DistRetainerInfo),
|
||||||
|
/// Unknown purpose
|
||||||
|
#[br(pre_assert(*magic == ServerLobbyIpcType::XiCharacterInfo))]
|
||||||
|
XiCharacterInfo { unk: [u8; 496] },
|
||||||
Unknown {
|
Unknown {
|
||||||
#[br(count = size - 32)]
|
#[br(count = size - 32)]
|
||||||
unk: Vec<u8>,
|
unk: Vec<u8>,
|
||||||
|
|
Loading…
Add table
Reference in a new issue