1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-09 04:07:46 +00:00

struct array and new constant

This commit is contained in:
karashiiro 2019-07-27 17:59:23 -07:00 committed by GitHub
parent 135c6c7e5d
commit afd60c3ca6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -135,14 +135,11 @@ namespace Sapphire::Network::Packets::Server
char fcName[24];
uint8_t unknown7;
uint16_t padding1;
uint16_t classJobIdLevel[76]; // Pairs of classJobId, classJobLevel (38 * 2)
/*
Like this:
uint16_t gldId; // 1
uint16_t gldLevel;
uint16_t pglId;
etc... through DNC (38)
*/
struct ClassJobEntry
{
uint16_t id;
uint16_t level;
} levelEntries[Common::CLASSJOB_TOTAL];
};
struct FFXIVIpcSetSearchInfo : FFXIVIpcBasePacket< UpdateSearchInfo >