reduce tolerance for pathfinding to make shells hit target better.

This commit is contained in:
Evan
2025-02-20 11:53:11 -08:00
parent 82667b413d
commit f23f84e693
-2
View File
@@ -90,8 +90,6 @@ export class PathFinder {
tolerance = 10;
} else if (dist > 25) {
tolerance = 5;
} else if (dist > 10) {
tolerance = 3;
} else {
tolerance = 0;
}