1
Fork 0
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:
Joshua Goins 2025-07-13 09:10:32 -04:00
parent 49003a4d89
commit 822f693f8c
2 changed files with 8 additions and 0 deletions

View file

@ -473,6 +473,11 @@
"name": "DistRetainerInfo",
"opcode": 23,
"size": 536
},
{
"name": "XiCharacterInfo",
"opcode": 22,
"size": 496
}
],
"ClientLobbyIpcType": [

View file

@ -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>,