This commit is contained in:
Anuken
2019-03-18 23:09:03 -04:00
parent 949f171579
commit 043f4688ef
4 changed files with 154 additions and 51 deletions

View File

@@ -99,6 +99,10 @@ public class MapGenerator extends Generator{
enemies.add(new Point2(x, y));
tiles[x][y].setBlock(Blocks.air);
}
if(tiles[x][y].block() == Blocks.part){
tiles[x][y].setBlock(Blocks.air);
}
}
}