Fixed loading screen not being hidden

This commit is contained in:
Anuken
2018-01-31 16:17:26 -05:00
parent 1515845d5d
commit b71ef67d54
2 changed files with 4 additions and 4 deletions

View File

@@ -212,13 +212,13 @@ public class Control extends Module{
ui.loadfrag.show();
saves.resetSave();
Timers.run(16, ()->{
Timers.runTask(10, ()->{
logic.reset();
world.loadMap(map);
logic.play();
});
Timers.run(18, ()-> ui.loadfrag.hide());
Timers.runTask(18, ()-> ui.loadfrag.hide());
}
public boolean isHighScore(){