diff --git a/core/src/io/anuke/mindustry/input/InputHandler.java b/core/src/io/anuke/mindustry/input/InputHandler.java index f329d6f876..9d92883b3c 100644 --- a/core/src/io/anuke/mindustry/input/InputHandler.java +++ b/core/src/io/anuke/mindustry/input/InputHandler.java @@ -833,6 +833,12 @@ public abstract class InputHandler implements InputProcessor, GestureListener{ // skip powernodes we have already crossed off as air if(skip.contains(points.get(j))) continue; +// // do not suggest building where you cant? +// if(!validPlace(points.get(i[0]-1).x, points.get(i[0]-1).y, block, rotation)){ +// skip.add(points.get(i[0]-1)); +// return; +// } + Tile next = world.ltile(points.get(i[0]).x, points.get(i[0]).y); Tile loop = world.ltile(points.get(j).x, points.get(j).y);