This commit is contained in:
Anuken
2019-09-29 08:59:53 -04:00
parent fe3f75f141
commit d35fbb8383
2 changed files with 6 additions and 4 deletions
@@ -92,7 +92,11 @@ public class Pathfinder implements Runnable{
int x = tile.x, y = tile.y;
tile.getLinkedTiles(t -> tiles[t.x][t.y] = packTile(t));
tile.getLinkedTiles(t -> {
if(Structs.inBounds(t.x, t.y, tiles)){
tiles[t.x][t.y] = packTile(t);
}
});
//can't iterate through array so use the map, which should not lead to problems
for(PathData[] arr : pathMap){