Skip to content

Commit

Permalink
Fix logical typo in cata update handler
Browse files Browse the repository at this point in the history
  • Loading branch information
killerwife committed Jan 13, 2025
1 parent 612198c commit c7532f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WowPacketParserModule.V4_4_0_54481/Parsers/UpdateHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ public static void HandleUpdateObject(Packet packet)
Storage.Objects.TryGetValue(guid, out obj);

if (ClientVersion.AddedInVersion(ClientBranch.Classic, ClientVersionBuild.V1_15_5_57638))
ReadUpdateObjectBlockFragmented(packet, updateValues, handler, obj, i);
ReadUpdateObjectBlockFragmented(fieldsData, updateValues, handler, obj, i);
else
ReadUpdateObjectBlock(packet, updateValues, handler, obj, i);
ReadUpdateObjectBlock(fieldsData, updateValues, handler, obj, i);
}
updateObject.Updated.Add(new UpdateObject{Guid = guid, Values = updateValues, TextStartOffset = partWriter.StartOffset, TextLength = partWriter.Length, Text = partWriter.Text});
break;
Expand Down

0 comments on commit c7532f1

Please sign in to comment.