This commit is contained in:
Anuken
2020-09-24 18:11:10 -04:00
parent 504334999d
commit 9e0b29b3dd
11 changed files with 43 additions and 31 deletions

View File

@@ -29,7 +29,7 @@ public class GameOverDialog extends BaseDialog{
}
void rebuild(){
title.setText(state.launched ? "@launch.title" : "@gameover");
title.setText("@gameover");
buttons.clear();
cont.clear();
@@ -79,7 +79,7 @@ public class GameOverDialog extends BaseDialog{
}
if(state.hasSector()){
RankResult result = state.stats.calculateRank(state.getSector(), state.launched);
RankResult result = state.stats.calculateRank(state.getSector(), true);
t.add(Core.bundle.format("stat.rank", result.rank + result.modifier));
t.row();
}