mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
[deck.generator] Removed basic lands from non basic land cardpool.
This commit is contained in:
parent
a4eb706f80
commit
faa09b45b7
1 changed files with 1 additions and 1 deletions
|
|
@ -31,7 +31,7 @@ public class CardsStorage {
|
|||
Set<Card> cards = set.createCards();
|
||||
allCards.addAll(cards);
|
||||
for (Card card : cards) {
|
||||
if (CardUtil.isLand(card)) {
|
||||
if (CardUtil.isLand(card) && !CardUtil.isBasicLand(card)) {
|
||||
landCards.add(card);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue