Skip to content

Commit 0c138fd

Browse files
committed
fix Abuyin pathing
1 parent 6ffd547 commit 0c138fd

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

game/world/waymatrix.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ WayMatrix::WayMatrix(World &world, const ZenLoad::zCWayNetData &dat)
1717
// scripting doc says 20m, but number seems to be incorrect
1818
if(world.version().game==2) {
1919
// Vatras requires at least 8 meters
20-
distanceThreshold = 10.f*100.f;
20+
// Abuyin requires less than 10 meters
21+
distanceThreshold = 9.f*100.f;
2122
}
2223

2324
wayPoints.resize(dat.waypoints.size());

0 commit comments

Comments
 (0)