[deck.generator] Removed basic lands from non basic land cardpool.

This commit is contained in:
magenoxx 2010-12-25 22:50:39 +03:00
parent a4eb706f80
commit faa09b45b7

View file

@ -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);
}
}