Skip to content

Commit

Permalink
Fix 4.4.1 SMSG_CORPSE_LOCATION
Browse files Browse the repository at this point in the history
  • Loading branch information
funjoker committed Nov 1, 2024
1 parent 60c585a commit af77a59
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion WowPacketParserModule.V4_4_0_54481/Parsers/CorpseHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,15 @@ public static void HandleCorpseLocation(Packet packet)
packet.ReadBit("Valid");
packet.ReadPackedGuid128("Player");
packet.ReadInt32("ActualMapID");
packet.ReadVector3("Position");

if (ClientVersion.RemovedInVersion(ClientVersionBuild.V4_4_1_57294))
packet.ReadVector3("Position");

packet.ReadInt32("MapID");
packet.ReadPackedGuid128("Transport");

if (ClientVersion.AddedInVersion(ClientVersionBuild.V4_4_1_57294))
packet.ReadVector3("Position");
}

[Parser(Opcode.SMSG_CORPSE_TRANSPORT_QUERY)]
Expand Down

0 comments on commit af77a59

Please sign in to comment.