mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
fixed Martyr's Soul not properly counting tapped lands
This commit is contained in:
parent
bf0bbaf877
commit
1a419f7f5b
1 changed files with 3 additions and 2 deletions
|
@ -13,7 +13,8 @@ import mage.constants.CardType;
|
||||||
import mage.constants.ComparisonType;
|
import mage.constants.ComparisonType;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
import mage.counters.CounterType;
|
import mage.counters.CounterType;
|
||||||
import mage.filter.common.FilterLandPermanent;
|
import mage.filter.FilterPermanent;
|
||||||
|
import mage.filter.common.FilterControlledLandPermanent;
|
||||||
import mage.filter.predicate.permanent.TappedPredicate;
|
import mage.filter.predicate.permanent.TappedPredicate;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
@ -23,7 +24,7 @@ import java.util.UUID;
|
||||||
*/
|
*/
|
||||||
public final class MartyrsSoul extends CardImpl {
|
public final class MartyrsSoul extends CardImpl {
|
||||||
|
|
||||||
private static final FilterLandPermanent filter = new FilterLandPermanent();
|
private static final FilterPermanent filter = new FilterControlledLandPermanent();
|
||||||
|
|
||||||
static {
|
static {
|
||||||
filter.add(TappedPredicate.instance);
|
filter.add(TappedPredicate.instance);
|
||||||
|
|
Loading…
Reference in a new issue