1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-26 14:37:44 +00:00

Fixed questmessage and a quest field size

This commit is contained in:
Mordred 2017-12-17 18:50:03 +01:00
parent 05e48baf7b
commit 84a851d0a1
2 changed files with 3 additions and 3 deletions

View file

@ -107,7 +107,7 @@ namespace Packets {
EventLinkshell = 0x1169,
QuestMessage = 0x0179,
QuestMessage = 0x0188, // updated 4.1
QuestActiveList = 0x017D, // updated 4.1
QuestUpdate = 0x017E, // updated 4.1
QuestCompleteList = 0x017F, // updated 4.1

View file

@ -1136,8 +1136,8 @@ struct FFXIVIpcQuestActiveList : FFXIVIpcBasePacket<QuestActiveList>
*/
struct FFXIVIpcQuestUpdate : FFXIVIpcBasePacket<QuestUpdate>
{
/* 0000 */ uint8_t slot;
/* 0001 */ uint8_t padding[3];
uint16_t slot;
uint16_t padding;
Common::QuestActive questInfo;
};