Save set unlocking information + won cards.

This commit is contained in:
RumbleBBU
2012-11-02 12:37:53 +00:00
parent 2b29a74596
commit a3dad42a39

View File

@@ -36,7 +36,6 @@ public class QuestUtilUnlockSets {
if (qData.getFormat() == null || qData.getFormat().getExcludedSetCodes().isEmpty()) {
return null;
}
List<CardEdition> choices = unlockableSets(qData);
if (choices == null || choices.size() < 1) {
@@ -102,7 +101,6 @@ public class QuestUtilUnlockSets {
JOptionPane.showMessageDialog(null, "You have successfully unlocked " + chooseEd.getName() + "!",
chooseEd.getName() + " unlocked!",
JOptionPane.PLAIN_MESSAGE);
return chooseEd;
}
@@ -250,5 +248,7 @@ public class QuestUtilUnlockSets {
"You get the following bonus cards:", displayCards);
cardView.show();
qData.save();
}
}