Core/PacketIO: Fixed array size of CMSG_QUEST_POI_QUERY as of patch 8.2.5 (#24035)

This commit is contained in:
ModoX
2020-01-03 11:12:35 +01:00
committed by Shauren
parent b0bf1275ee
commit 75bd078c57

View File

@@ -317,7 +317,7 @@ namespace WorldPackets
void Read() override;
int32 MissingQuestCount = 0;
std::array<int32, 100> MissingQuestPOIs;
std::array<int32, 125> MissingQuestPOIs;
};
class QuestPOIQueryResponse final : public ServerPacket