mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Fix nonbasic land counting in singleton mode
This commit is contained in:
parent
80e7593bb1
commit
788a1be01e
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ public class DeckGeneratorPool
|
||||||
int cardCount = getCardCount((card.getName()));
|
int cardCount = getCardCount((card.getName()));
|
||||||
// No need to check if the land is valid for the colors chosen
|
// 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.
|
// They are all filtered before searching for lands to include in the deck.
|
||||||
return (cardCount < 4);
|
return (cardCount < (isSingleton ? 1 : 4));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue