saves changes made by sideboarding until 3rd match (this one and prevoius commit do)

This commit is contained in:
Maxmtg
2013-02-04 09:46:15 +00:00
parent c60dcdd34b
commit e72f9485c9

View File

@@ -119,8 +119,7 @@ public class GameNew {
boolean canSideBoard = !isFirstGame && gameType.isSideboardingAllowed() && hasSpareCards;
if (canSideBoard) {
// This method changes the deck passed as parameter
player.getController().sideboard(psc.getCurrentDeck(), gameType);
psc.setCurrentDeck(player.getController().sideboard(psc.getCurrentDeck(), gameType));
} else {
psc.restoreOriginalDeck();
myDeck = psc.getCurrentDeck();