Pathfinder debug off

This commit is contained in:
Anuken 2022-04-07 00:42:53 -04:00
parent f7f1bf1a43
commit 68a12b37c6

View File

@ -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;