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)
This commit is contained in:
hondacrx
2020-01-09 11:36:21 -05:00
parent ca2fdae311
commit a9ed60865d
+1 -1
View File
@@ -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