mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-01-27 15:02:03 -08:00
Replaced waves.never with ∞
This commit is contained in:
parent
e44c3899e8
commit
ee79bc5501
3 changed files with 2 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 -> {
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue