cards won in ante will now show up as NEW in the Card Shop under Owned Cards

This commit is contained in:
slapshot5
2011-12-19 04:52:58 +00:00
parent cf0bdc166f
commit adc0f65fe5

View File

@@ -153,7 +153,8 @@ public class QuestWinLoseHandler extends ControlWinLose {
CardList antes = AllZone.getComputerPlayer().getCardsIn(Zone.Ante);
for (Card ante : antes) {
CardPrinted antePrinted = CardDb.instance().getCard(ante.getName(), ante.getCurSetCode());
AllZone.getQuestData().getCardPool().add(antePrinted);
//AllZone.getQuestData().getCardPool().add(antePrinted);
AllZone.getQuestData().getCards().addSingleCard(antePrinted);
}
anteWon(antes);