Compare commits

..

No commits in common. "1e07ef3d02ad914a2302d3fcd49dba4be16036ea" and "9ca851f83785e8ea83ef107ba670b61facf67273" have entirely different histories.

View File

@ -1772,13 +1772,6 @@ void TravelNodeMap::generateTaxiPaths()
TravelNodePath travelPath(0.1f, totalTime, (uint8)TravelNodePathType::flightPath, i, true);
travelPath.setPath(ppath);
// Preserve existing walk paths — taxi-position lookup can resolve to
// a non-FM node (innkeeper, subzone), and overwriting its walk path
// with a flight path makes the walkable connection disappear.
if (startNode->hasPathTo(endNode) &&
startNode->getPathTo(endNode)->getPathType() == TravelNodePathType::walk)
continue;
startNode->setPathTo(endNode, travelPath);
}
}
@ -2200,9 +2193,6 @@ void TravelNodeMap::saveNodeStore()
PlayerbotsDatabase.CommitTransaction(pathTrans);
LOG_INFO("playerbots", ">> Saved {} travelNode Paths, {} points.", paths, points);
LOG_INFO("playerbots",
">> NOTE: writes are queued ASYNC. Run '.server shutdown 1' to flush "
"the queue; killing the process now will lose pending rows.");
}
void TravelNodeMap::LoadNodeStore()
@ -2221,7 +2211,7 @@ void TravelNodeMap::LoadNodeStore()
TravelNode* node = addNode(WorldPosition(fields[2].Get<uint32>(), fields[3].Get<float>(),
fields[4].Get<float>(), fields[5].Get<float>()),
fields[1].Get<std::string>(), true, false);
fields[1].Get<std::string>(), true);
if (fields[6].Get<bool>())
node->setLinked(true);