Fix Lurrus being able to play lands from the graveyard

This commit is contained in:
Will Hall 2020-04-19 12:06:22 -07:00 committed by Evan Kranzler
parent cf6656a403
commit c066ad41e8

View file

@ -26,6 +26,7 @@ import mage.watchers.Watcher;
import java.util.Set; import java.util.Set;
import java.util.UUID; import java.util.UUID;
import mage.filter.predicate.Predicates;
/** /**
* @author TheElk801 * @author TheElk801
@ -88,6 +89,7 @@ class LurrusOfTheDreamDenContinuousEffect extends ContinuousEffectImpl {
static { static {
filter.add(new ConvertedManaCostPredicate(ComparisonType.FEWER_THAN, 3)); filter.add(new ConvertedManaCostPredicate(ComparisonType.FEWER_THAN, 3));
filter.add(Predicates.not(CardType.LAND.getPredicate()));
} }
LurrusOfTheDreamDenContinuousEffect() { LurrusOfTheDreamDenContinuousEffect() {