Merge pull request #2434 from spjspj/master

spjspj - Fix cube from deck from being broken with layouts
This commit is contained in:
spjspj 2016-10-07 10:40:24 +11:00 committed by GitHub
commit 7e71b22fbe
2 changed files with 7 additions and 1 deletions

View file

@ -586,6 +586,7 @@ public class NewTournamentDialog extends MageDialog {
JOptionPane.showMessageDialog(MageFrame.getDesktop(), e1.getMessage(), "Error loading deck", JOptionPane.ERROR_MESSAGE);
}
if (cubeFromDeck != null) {
cubeFromDeck.clearLayouts();
tOptions.getLimitedOptions().setCubeFromDeck(cubeFromDeck);
}
}

View file

@ -165,4 +165,9 @@ public class Deck implements Serializable {
this.deckHashCode = deckHashCode;
}
public void clearLayouts() {
this.cardsLayout = null;
this.sideboardLayout = null;
}
}