Changed placement controls / Fixed complete sectors not resetting

This commit is contained in:
Anuken
2018-10-17 17:28:24 -04:00
parent fdffa77bc5
commit f530c9514f
6 changed files with 10 additions and 7 deletions

View File

@@ -380,7 +380,7 @@ public class HudFragment extends Fragment{
});
table.setDisabled(() -> !(world.getSector() != null && world.getSector().currentMission().hasMessage()));
table.visible(() -> !((world.getSector() == null && state.mode.disableWaves) || !state.mode.showMission));
table.visible(() -> !((world.getSector() == null && state.mode.disableWaves) || !state.mode.showMission || (world.getSector() != null && world.getSector().complete)));
}
private void addPlayButton(Table table){