forked from External/mage
refactored all instances of SubtypePredicate
This commit is contained in:
parent
3b8298e7c2
commit
86906ec25f
1659 changed files with 2039 additions and 3777 deletions
|
|
@ -3,7 +3,6 @@ package mage.abilities.keyword;
|
|||
|
||||
import mage.constants.SubType;
|
||||
import mage.filter.common.FilterLandPermanent;
|
||||
import mage.filter.predicate.mageobject.SubtypePredicate;
|
||||
|
||||
/**
|
||||
*
|
||||
|
|
@ -14,7 +13,7 @@ public class SwampwalkAbility extends LandwalkAbility {
|
|||
private static final FilterLandPermanent filter = new FilterLandPermanent("swamp");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate(SubType.SWAMP));
|
||||
filter.add(SubType.SWAMP.getPredicate());
|
||||
}
|
||||
|
||||
public SwampwalkAbility() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue