1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-22 10:07:44 +00:00

Merge pull request #630 from collett8192/update_position_handler

Fix update position packet.
This commit is contained in:
Adam 2020-01-22 20:30:30 +11:00 committed by GitHub
commit 1fd79e3b87
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -49,15 +49,15 @@ struct FFXIVIpcUpdatePosition :
FFXIVIpcBasePacket< UpdatePositionHandler >
{
/* 0000 */ float rotation;
/* 0004 */ uint8_t unk_1[ 3 ];
/* 0004 */ uint8_t animationType;
/* 0005 */ uint8_t animationState;
/* 0006 */ uint8_t clientAnimationType;
/* 0007 */ uint8_t headPosition;
/* 0008 */ Common::FFXIVARR_POSITION3 position;
/* 000C */ uint8_t animationType;
/* 000D */ uint8_t animationState;
/* 000E */ uint8_t clientAnimationType;
/* 000F */ uint8_t unk_2;
/* 000C */ uint8_t unk[ 4 ]; // padding?
};
struct FFXIVIpcSkillHandler :
FFXIVIpcBasePacket< SkillHandler >
{