Fix nonbasic land counting in singleton mode

This commit is contained in:
Thomas Winwood 2019-04-07 06:14:14 +01:00
parent 80e7593bb1
commit 788a1be01e

View file

@ -136,7 +136,7 @@ public class DeckGeneratorPool
int cardCount = getCardCount((card.getName()));
// No need to check if the land is valid for the colors chosen
// They are all filtered before searching for lands to include in the deck.
return (cardCount < 4);
return (cardCount < (isSingleton ? 1 : 4));
}