mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Fix build.
This commit is contained in:
@@ -372,7 +372,14 @@ void WorldSession::HandleQuestPOIQuery(WorldPackets::Query::QuestPOIQuery& quest
|
||||
questPOIBlobData.UnkWoD1 = data->UnkWoD1;
|
||||
|
||||
for (QuestPOIPoint const& point : data->points)
|
||||
questPOIBlobData.QuestPOIBlobPointStats.push_back({ point.X, point.Y });
|
||||
{
|
||||
WorldPackets::Query::QuestPOIBlobPoint questPOIBlobPoint;
|
||||
|
||||
questPOIBlobPoint.X = point.X;
|
||||
questPOIBlobPoint.Y = point.Y;
|
||||
|
||||
questPOIBlobData.QuestPOIBlobPointStats.push_back(questPOIBlobPoint);
|
||||
}
|
||||
|
||||
questPOIData.QuestPOIBlobDataStats.push_back(questPOIBlobData);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user