diff --git a/src/common/Network/PacketDef/Ipcs.h b/src/common/Network/PacketDef/Ipcs.h index f1c5918b..36d6c756 100644 --- a/src/common/Network/PacketDef/Ipcs.h +++ b/src/common/Network/PacketDef/Ipcs.h @@ -323,7 +323,6 @@ namespace Sapphire::Network::Packets AoESkillHandler = 0x140, // updated 5.0 UpdatePositionHandler = 0x0141, // updated 5.0 - UpdatePositionInstance = 0x0183, // updated 4.3 InventoryModifyHandler = 0x0148, // updated 5.0 @@ -351,6 +350,8 @@ namespace Sapphire::Network::Packets SetSharedEstateSettings = 0x017B, // updated 5.0 + UpdatePositionInstance = 0x0180, // updated 5.0 + PerformNoteHandler = 0x029B, // updated 4.3 diff --git a/src/common/Network/PacketDef/Zone/ClientZoneDef.h b/src/common/Network/PacketDef/Zone/ClientZoneDef.h index bf19fb7e..b15936bf 100644 --- a/src/common/Network/PacketDef/Zone/ClientZoneDef.h +++ b/src/common/Network/PacketDef/Zone/ClientZoneDef.h @@ -51,11 +51,11 @@ struct FFXIVIpcUpdatePosition : /* 0000 */ float rotation; /* 0004 */ uint8_t unk_1[ 3 ]; /* 0007 */ uint8_t headPosition; - /* 0008 */ uint8_t animationType; - /* 0009 */ uint8_t animationState; - /* 000A */ uint8_t clientAnimationType; - /* 000B */ uint8_t unk_2; - /* 000C */ Common::FFXIVARR_POSITION3 position; + /* 0008 */ Common::FFXIVARR_POSITION3 position; + /* 000C */ uint8_t animationType; + /* 000D */ uint8_t animationState; + /* 000E */ uint8_t clientAnimationType; + /* 000F */ uint8_t unk_2; }; struct FFXIVIpcSkillHandler :