1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-25 19:17:45 +00:00

Merge remote-tracking branch 'remotes/origin/develop' into develop_5.21u

This commit is contained in:
collett 2020-04-02 18:26:01 +09:00
commit 422e55defe
2 changed files with 12 additions and 1 deletions

View file

@ -372,7 +372,7 @@ namespace Sapphire::Network::Packets
SetSharedEstateSettings = 0x017B, // updated 5.0
UpdatePositionInstance = 0x0180, // updated 5.0
UpdatePositionInstance = 0x0080, // updated 5.21 hotfix
PerformNoteHandler = 0x029B, // updated 4.3

View file

@ -57,6 +57,17 @@ struct FFXIVIpcUpdatePosition :
/* 000C */ uint8_t unk[ 4 ]; // padding?
};
struct FFXIVIpcUpdatePositionInstance :
FFXIVIpcBasePacket< UpdatePositionInstance >
{
/* 0000 */ float rotation;
/* 0004 */ float interpolateRotation;
/* 0008 */ uint32_t flags;
/* 000C */ Common::FFXIVARR_POSITION3 position;
/* 0018 */ Common::FFXIVARR_POSITION3 interpolatePosition;
/* 0024 */ uint32_t unknown;
};
struct FFXIVIpcSkillHandler :
FFXIVIpcBasePacket< SkillHandler >