mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
Merge branch 'conquest' into 'master'
Allow cards from precon products in Planar Conquest See merge request core-developers/forge!4573
This commit is contained in:
@@ -194,7 +194,7 @@ public class ConquestPlane {
|
||||
for (String setCode : setCodes) {
|
||||
CardEdition edition = FModel.getMagicDb().getEditions().get(setCode);
|
||||
if (edition != null) {
|
||||
for (CardInSet card : edition.getCards()) {
|
||||
for (CardInSet card : edition.getAllCardsInSet()) {
|
||||
if (bannedCardSet == null || !bannedCardSet.contains(card.name)) {
|
||||
addCard(commonCards.getCard(card.name, setCode));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user