From f23f84e693eaddf09a2c28679e74cbbaf3c62043 Mon Sep 17 00:00:00 2001 From: Evan Date: Thu, 20 Feb 2025 11:53:11 -0800 Subject: [PATCH] reduce tolerance for pathfinding to make shells hit target better. --- src/core/pathfinding/PathFinding.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/core/pathfinding/PathFinding.ts b/src/core/pathfinding/PathFinding.ts index 8ff2848d4..8b1955639 100644 --- a/src/core/pathfinding/PathFinding.ts +++ b/src/core/pathfinding/PathFinding.ts @@ -90,8 +90,6 @@ export class PathFinder { tolerance = 10; } else if (dist > 25) { tolerance = 5; - } else if (dist > 10) { - tolerance = 3; } else { tolerance = 0; }