mirror of
https://github.com/correl/mage.git
synced 2024-11-28 19:19:55 +00:00
Fixed test
This commit is contained in:
parent
7685115832
commit
30e582ba8f
1 changed files with 2 additions and 1 deletions
|
@ -14,6 +14,7 @@ import mage.constants.Duration;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
import mage.filter.FilterPermanent;
|
import mage.filter.FilterPermanent;
|
||||||
import mage.filter.predicate.mageobject.AnotherPredicate;
|
import mage.filter.predicate.mageobject.AnotherPredicate;
|
||||||
|
import mage.filter.predicate.permanent.TokenPredicate;
|
||||||
import mage.game.permanent.token.PhyrexianGolemToken;
|
import mage.game.permanent.token.PhyrexianGolemToken;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
@ -27,7 +28,7 @@ public final class DarksteelSplicer extends CardImpl {
|
||||||
|
|
||||||
static {
|
static {
|
||||||
filter.add(AnotherPredicate.instance);
|
filter.add(AnotherPredicate.instance);
|
||||||
filter.add(TokenPredicate.FALSE); //non token
|
filter.add(TokenPredicate.FALSE);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static final FilterPermanent filter2 = new FilterPermanent(SubType.GOLEM, "Golems");
|
private static final FilterPermanent filter2 = new FilterPermanent(SubType.GOLEM, "Golems");
|
||||||
|
|
Loading…
Reference in a new issue