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:
@@ -86,8 +86,8 @@ namespace Game.Networking.Packets
|
|||||||
_worldPacket.WriteUInt32(VirtualRealmAddress);
|
_worldPacket.WriteUInt32(VirtualRealmAddress);
|
||||||
_worldPacket.WriteInt32(Hotfixes.Keys.Count);
|
_worldPacket.WriteInt32(Hotfixes.Keys.Count);
|
||||||
|
|
||||||
foreach (var record in Hotfixes.Values)
|
foreach (var key in Hotfixes.Keys)
|
||||||
record.ID.Write(_worldPacket);
|
Hotfixes[key][0].ID.Write(_worldPacket);
|
||||||
}
|
}
|
||||||
|
|
||||||
public uint VirtualRealmAddress;
|
public uint VirtualRealmAddress;
|
||||||
|
|||||||
Reference in New Issue
Block a user