allow boating on lakes

This commit is contained in:
Evan
2025-03-03 19:19:16 -08:00
parent 9fd1203d50
commit c1383d76f1
5 changed files with 68 additions and 55 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ export class PathFinder {
if (canMoveOnLand) {
return true;
}
return game.miniMap().isOcean(tr);
return game.miniMap().isWater(tr);
},
iterations,
maxTries,