mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Fix Lurrus being able to play lands from the graveyard
This commit is contained in:
parent
cf6656a403
commit
c066ad41e8
1 changed files with 2 additions and 0 deletions
|
@ -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() {
|
||||||
|
|
Loading…
Reference in a new issue