mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 18:58:00 +00:00
cards won in ante will now show up as NEW in the Card Shop under Owned Cards
This commit is contained in:
@@ -153,7 +153,8 @@ public class QuestWinLoseHandler extends ControlWinLose {
|
|||||||
CardList antes = AllZone.getComputerPlayer().getCardsIn(Zone.Ante);
|
CardList antes = AllZone.getComputerPlayer().getCardsIn(Zone.Ante);
|
||||||
for (Card ante : antes) {
|
for (Card ante : antes) {
|
||||||
CardPrinted antePrinted = CardDb.instance().getCard(ante.getName(), ante.getCurSetCode());
|
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);
|
anteWon(antes);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user