Core/Packets: Fixed sending way to many values in AvailableHotfixes. Which caused it not to get the blob data it needed.

This commit is contained in:
hondacrx
2022-06-23 15:57:04 -04:00
parent 0f655d09ca
commit b8ab80bfcc
@@ -86,8 +86,8 @@ namespace Game.Networking.Packets
_worldPacket.WriteUInt32(VirtualRealmAddress);
_worldPacket.WriteInt32(Hotfixes.Keys.Count);
foreach (var record in Hotfixes.Values)
record.ID.Write(_worldPacket);
foreach (var key in Hotfixes.Keys)
Hotfixes[key][0].ID.Write(_worldPacket);
}
public uint VirtualRealmAddress;