Skip to content

Commit

Permalink
Fix 4.4.1 SMSG_EQUIPMENT_SET_ID
Browse files Browse the repository at this point in the history
  • Loading branch information
funjoker committed Nov 2, 2024
1 parent a602770 commit dc84112
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,14 @@ public static class EquipmentSetHandler
[Parser(Opcode.SMSG_EQUIPMENT_SET_ID)]
public static void HandleEquipmentSetSaved(Packet packet)
{
packet.ReadUInt64("GUID");
if (ClientVersion.RemovedInVersion(ClientVersionBuild.V4_4_1_57294))
packet.ReadUInt64("GUID");

packet.ReadInt32("Type");
packet.ReadUInt32("SetID");

if (ClientVersion.AddedInVersion(ClientVersionBuild.V4_4_1_57294))
packet.ReadUInt64("GUID");
}

private const int NumSlots = 19;
Expand Down

0 comments on commit dc84112

Please sign in to comment.