mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 19:28:01 +00:00
- Fixed a logic error in LANDS_PRODUCING_MANA card predicate.
This commit is contained in:
@@ -497,7 +497,7 @@ public final class CardPredicates {
|
||||
public static final Predicate<Card> LANDS_PRODUCING_MANA = new Predicate<Card>() {
|
||||
@Override
|
||||
public boolean apply(Card c) {
|
||||
return c.isLand() && !c.getManaAbilities().isEmpty();
|
||||
return c.isLand() && (!c.getManaAbilities().isEmpty() || c.isBasicLand());
|
||||
}
|
||||
};
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user