Replaced waves.never with ∞

This commit is contained in:
Anuken
2021-01-12 10:20:07 -05:00
parent e44c3899e8
commit ee79bc5501
3 changed files with 2 additions and 3 deletions

View File

@@ -200,7 +200,7 @@ public class MapIO{
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.setFloor(other.floor());
tile.setFloorUnder(other.floor());
break;
}
}