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

@ -362,7 +362,6 @@ editor.center = Center
workshop = Workshop
waves.title = Waves
waves.remove = Remove
waves.never = <never>
waves.every = every
waves.waves = wave(s)
waves.perspawn = per spawn

View File

@ -190,7 +190,7 @@ public class WaveInfoDialog extends BaseDialog{
group.end = never;
updateWaves();
}
}).width(100f).get().setMessageText(Core.bundle.get("waves.never"));
}).width(100f).get().setMessageText("");
});
t.row();
t.table(p -> {

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;
}
}