Core/PacketIO: Fixed array size of CMSG_QUEST_POI_QUERY as of patch 10.0.7

This commit is contained in:
ModoX
2023-03-24 19:06:50 +01:00
parent cc57c9dad5
commit 6af42ce82d

View File

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