From f2fd23dced06887b3644759afb070b382257b7a0 Mon Sep 17 00:00:00 2001 From: LeoDog896 Date: Wed, 30 Sep 2020 12:56:59 -0400 Subject: [PATCH] can be nearGround AND nearLiquid --- core/src/mindustry/ai/Pathfinder.java | 1 - 1 file changed, 1 deletion(-) diff --git a/core/src/mindustry/ai/Pathfinder.java b/core/src/mindustry/ai/Pathfinder.java index a1aa2cb3af..21ef56134b 100644 --- a/core/src/mindustry/ai/Pathfinder.java +++ b/core/src/mindustry/ai/Pathfinder.java @@ -103,7 +103,6 @@ public class Pathfinder implements Runnable{ /** Packs a tile into its internal representation. */ private int packTile(Tile tile){ - //TODO nearGround is just the inverse of nearLiquid? boolean nearLiquid = false, nearSolid = false, nearGround = false; for(int i = 0; i < 4; i++){