From 8b6f8aef8d96e30e62f91a5a3362c7a321319e46 Mon Sep 17 00:00:00 2001 From: collett Date: Wed, 22 Jan 2020 17:55:40 +0900 Subject: [PATCH] Fix update position packet. --- src/common/Network/PacketDef/Zone/ClientZoneDef.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/common/Network/PacketDef/Zone/ClientZoneDef.h b/src/common/Network/PacketDef/Zone/ClientZoneDef.h index 7b0d39ea..9c8d0fc0 100644 --- a/src/common/Network/PacketDef/Zone/ClientZoneDef.h +++ b/src/common/Network/PacketDef/Zone/ClientZoneDef.h @@ -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 > {