1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-27 22:57:45 +00:00

fix update position packet

This commit is contained in:
NotAdam 2019-07-14 17:34:55 +10:00
parent ccadf7341c
commit 787c4d3614
2 changed files with 7 additions and 6 deletions

View file

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

View file

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