From a9ed60865d18ea93b03ad0d65a6d50b82a70c2e7 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Thu, 9 Jan 2020 11:36:21 -0500 Subject: [PATCH] Core/PacketIO: Fixed array size of CMSG_QUEST_POI_QUERY as of patch 8.2.5 Port From (https://github.com/TrinityCore/TrinityCore/commit/75bd078c57002fb5bae4ec978a044d605afb5a29) --- Source/Game/Network/Packets/QueryPackets.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Game/Network/Packets/QueryPackets.cs b/Source/Game/Network/Packets/QueryPackets.cs index fb42794fc..b25d3b79e 100644 --- a/Source/Game/Network/Packets/QueryPackets.cs +++ b/Source/Game/Network/Packets/QueryPackets.cs @@ -409,7 +409,7 @@ namespace Game.Network.Packets } public int MissingQuestCount; - public uint[] MissingQuestPOIs = new uint[100]; + public uint[] MissingQuestPOIs = new uint[125]; } public class QuestPOIQueryResponse : ServerPacket