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
|
|
@ -6,7 +6,6 @@ import mage.constants.PhaseStep;
|
|||
import mage.constants.SubType;
|
||||
import mage.counters.CounterType;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.predicate.mageobject.SubtypePredicate;
|
||||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent.EventType;
|
||||
import mage.game.permanent.Permanent;
|
||||
|
|
@ -20,7 +19,7 @@ public class PreCombatMainStep extends Step {
|
|||
private static final FilterPermanent filter = new FilterPermanent("Saga");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate(SubType.SAGA));
|
||||
filter.add(SubType.SAGA.getPredicate());
|
||||
}
|
||||
|
||||
public PreCombatMainStep() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue