added ask if continue powerdown

This commit is contained in:
Tobydrama
2020-04-20 18:04:34 +02:00
parent 597215910e
commit 48384686fb
2 changed files with 19 additions and 8 deletions

View File

@@ -25,10 +25,7 @@ public class ScreenManager {
public synchronized CardChoiceScreen getCardChoiceScreen(RoboRallyWrapper roboRallyWrapper) {
if (this.cardChoiceScreen == null) {
this.cardChoiceScreen = new CardChoiceScreen(roboRallyWrapper);
}
return cardChoiceScreen;
return new CardChoiceScreen(roboRallyWrapper);
}
/**
@@ -51,10 +48,7 @@ public class ScreenManager {
* @return A power down screen instance
*/
public synchronized PowerDownScreen getPowerDownScreen(RoboRallyWrapper roboRallyWrapper) {
if (this.powerDownScreen == null) {
this.powerDownScreen = new PowerDownScreen(roboRallyWrapper);
}
return powerDownScreen;
return new PowerDownScreen(roboRallyWrapper);
}
/**