New blocks / Floor edge fixes

This commit is contained in:
Anuken
2019-01-30 18:39:10 -05:00
parent 209e3f03c1
commit c046a1b474
15 changed files with 1109 additions and 1038 deletions
@@ -92,8 +92,8 @@ public class MapGenerator extends Generator{
if((tile.block() instanceof StaticWall
&& tiles[newX][newY].block() instanceof StaticWall)
|| tile.block() == Blocks.air
|| tiles[newX][newY].block() == Blocks.air){
|| tile.block() == Blocks.air
|| (tiles[newX][newY].block() == Blocks.air && tile.block() instanceof StaticWall)){
tile.setBlock(tiles[newX][newY].block());
}