1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-02 08:57:44 +00:00

derp, they should be in their own struct

This commit is contained in:
Biscuit 2018-10-11 15:44:15 +11:00
parent 07693cbf46
commit 95746e3219

View file

@ -1599,18 +1599,12 @@ struct FFXIVIpcWardYardInfo :
struct FFXIVIpcActorFreeSpawn : struct FFXIVIpcActorFreeSpawn :
FFXIVIpcBasePacket< SharedEstateSettingsResponse > FFXIVIpcBasePacket< SharedEstateSettingsResponse >
{ {
uint64_t char1ContentId; struct playerEntry {
uint8_t char1Permissions; uint64_t contentId;
char char1Name[0x20]; uint8_t permissions;
char padding1[0x7]; char name[0x20];
uint64_t char2ContentId; char padding[0x7];
uint8_t char2Permissions; } entry[3];
char char2Name[0x20];
char padding2[0x7];
uint64_t char3ContentId;
uint8_t char3Permissions;
char char3Name[0x20];
char padding3[0x7];
}; };
struct FFXIVIpcMSQTrackerProgress : struct FFXIVIpcMSQTrackerProgress :