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

Fix update position packet.

This commit is contained in:
collett 2020-01-22 17:55:40 +09:00
parent 91974b4e71
commit 8b6f8aef8d

View file

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