diff --git a/core/src/mindustry/io/MapIO.java b/core/src/mindustry/io/MapIO.java index c1d33f44e3..c14107e106 100644 --- a/core/src/mindustry/io/MapIO.java +++ b/core/src/mindustry/io/MapIO.java @@ -197,16 +197,6 @@ public class MapIO{ //guess at floors by grabbing a random adjacent floor for(Tile tile : tiles){ - if(tile.floor() == Blocks.air && tile.block() != Blocks.air){ - for(Point2 p : Geometry.d4){ - Tile other = tiles.get(tile.x + p.x, tile.y + p.y); - if(other != null && other.floor() != Blocks.air){ - tile.setFloorUnder(other.floor()); - break; - } - } - } - //default to stone floor if(tile.floor() == Blocks.air){ tile.setFloorUnder((Floor)Blocks.stone);