Core/Movement: Fix WaypointMgr::GetNode infinite recursion (function isn't used anywhere currently)

This commit is contained in:
Shauren
2025-06-11 00:52:23 +02:00
parent 7041bb49f7
commit 7e27c42a2f

View File

@@ -308,7 +308,7 @@ WaypointNode const* WaypointMgr::GetNode(uint32 pathId, uint32 nodeId) const
if (!path)
return nullptr;
return GetNode(path->Id, nodeId);
return GetNode(path, nodeId);
}
WaypointPath const* WaypointMgr::GetPathByVisualGUID(ObjectGuid guid) const