Skip to content

Commit 01a7956

Browse files
committed
Fix rotation and scale parsing
1 parent f138e34 commit 01a7956

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

WowPacketParserModule.V11_0_0_55666/Parsers/HousingHandler.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ public static void HandleHousingDecorMove(Packet packet)
4343
{
4444
packet.ReadPackedGuid128("DecorGUID");
4545
packet.ReadVector3("Position");
46-
packet.ReadQuaternion("Rotation");
46+
packet.ReadVector3("Rotation");
47+
packet.ReadSingle("Scale");
4748
packet.ReadPackedGuid128("AttachParentGUID");
4849
packet.ReadPackedGuid128("RoomGUID");
4950
packet.ReadPackedGuid128("Field_70");
@@ -71,7 +72,8 @@ public static void HousingDecorPlaceNewDecor(Packet packet)
7172
{
7273
packet.ReadPackedGuid128("DecorGUID");
7374
packet.ReadVector3("Position");
74-
packet.ReadQuaternion("Rotation");
75+
packet.ReadVector3("Rotation");
76+
packet.ReadSingle("Scale");
7577
packet.ReadPackedGuid128("AttachParentGUID");
7678
packet.ReadPackedGuid128("RoomGUID");
7779
packet.ReadByte("Field_61");

0 commit comments

Comments
 (0)