Quitting a gauntlet match should abandon it (when not

using the "quit and save" option after a win). With this
change, you can now properly edit your deck between
gauntlet tries and have the effect be reflected in the
next gauntlet.
This commit is contained in:
Myrd
2017-05-07 19:36:14 +00:00
parent b01ea14ad9
commit cfe2a7e98d
4 changed files with 22 additions and 0 deletions

View File

@@ -114,4 +114,10 @@ public class GauntletWinLose extends ControlWinLose {
super.actionOnContinue();
}
}
@Override
public void actionOnQuit() {
super.actionOnQuit();
controller.actionOnQuit();
}
}