From b8ab80bfccf76c8fbbd6d2039357a731c101328c Mon Sep 17 00:00:00 2001 From: hondacrx Date: Thu, 23 Jun 2022 15:57:04 -0400 Subject: [PATCH] Core/Packets: Fixed sending way to many values in AvailableHotfixes. Which caused it not to get the blob data it needed. --- Source/Game/Networking/Packets/HotfixPackets.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Game/Networking/Packets/HotfixPackets.cs b/Source/Game/Networking/Packets/HotfixPackets.cs index f758b8e34..82b397ccf 100644 --- a/Source/Game/Networking/Packets/HotfixPackets.cs +++ b/Source/Game/Networking/Packets/HotfixPackets.cs @@ -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;