Move the log output here to make it display the correct edition.

This commit is contained in:
Rob Schnautz
2018-01-20 15:02:24 +00:00
parent 88339864f7
commit cc2b2921d9

View File

@@ -90,6 +90,7 @@ public class CardPool extends ItemPool<PaperCard> {
cardName = paperCard.getName(); cardName = paperCard.getName();
artCount = isCommonCard ? StaticData.instance().getCommonCards().getArtCount(cardName, setCode) : 1; artCount = isCommonCard ? StaticData.instance().getCommonCards().getArtCount(cardName, setCode) : 1;
} else { } else {
System.out.print("An unsupported card was requested: \"" + cardName + "\" from \"" + setCode + "\". ");
paperCard = StaticData.instance().getCommonCards().createUnsupportedCard(cardName); paperCard = StaticData.instance().getCommonCards().createUnsupportedCard(cardName);
} }