Fix card select issue

This commit is contained in:
Felix Koppe
2024-12-06 09:57:28 +01:00
parent 0237bcc4be
commit e337b1f888
2 changed files with 2 additions and 2 deletions

View File

@@ -104,7 +104,7 @@ public void confirm() {
} }
gameView.noConfirm(); gameView.noConfirm();
gameView.needNoPower(); gameView.noNoPower();
} }
public void selectTsk(Color color) { public void selectTsk(Color color) {

View File

@@ -38,7 +38,7 @@ public GameView(MdgaApp app) {
confirmButton = new ButtonRight(app, guiNode, () -> app.getModelSynchronize().confirm(), "Bestätigen", 1); confirmButton = new ButtonRight(app, guiNode, () -> app.getModelSynchronize().confirm(), "Bestätigen", 1);
noPowerButton = new ButtonRight(app, guiNode, () -> app.getModelSynchronize().confirm(), "Keine Powercard", 1); noPowerButton = new ButtonRight(app, guiNode, () -> app.getModelSynchronize().confirm(), "Verzichten", 1);
interruptDialog = new InterruptDialog(app, guiNode); interruptDialog = new InterruptDialog(app, guiNode);