From 68a12b37c628b468f457970e3e97e044ef30b89d Mon Sep 17 00:00:00 2001 From: Anuken Date: Thu, 7 Apr 2022 00:42:53 -0400 Subject: [PATCH] Pathfinder debug off --- core/src/mindustry/ai/ControlPathfinder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/ai/ControlPathfinder.java b/core/src/mindustry/ai/ControlPathfinder.java index b34fed9021..b34c674b1e 100644 --- a/core/src/mindustry/ai/ControlPathfinder.java +++ b/core/src/mindustry/ai/ControlPathfinder.java @@ -48,7 +48,7 @@ public class ControlPathfinder{ (PathTile.nearGround(tile) || PathTile.nearSolid(tile) ? 2 : 0) + (PathTile.deep(tile) ? 0 : 1); - public static boolean showDebug = true; + public static boolean showDebug = false; //static access probably faster than object access static int wwidth, wheight;