Stash questionable prototype

This commit is contained in:
Patrick 'Quezler' Mounier
2019-11-05 10:26:56 +01:00
parent d57d17733e
commit e5a5ce7188

View File

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