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:
commit
422e55defe
2 changed files with 12 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -56,6 +56,17 @@ struct FFXIVIpcUpdatePosition :
|
|||
/* 0008 */ Common::FFXIVARR_POSITION3 position;
|
||||
/* 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 :
|
||||
|
|
Loading…
Add table
Reference in a new issue