Fixed test

This commit is contained in:
Oleg Agafonov 2023-05-11 00:21:43 +04:00
parent 7685115832
commit 30e582ba8f

View file

@ -14,6 +14,7 @@ import mage.constants.Duration;
import mage.constants.SubType;
import mage.filter.FilterPermanent;
import mage.filter.predicate.mageobject.AnotherPredicate;
import mage.filter.predicate.permanent.TokenPredicate;
import mage.game.permanent.token.PhyrexianGolemToken;
import java.util.UUID;
@ -27,7 +28,7 @@ public final class DarksteelSplicer extends CardImpl {
static {
filter.add(AnotherPredicate.instance);
filter.add(TokenPredicate.FALSE); //non token
filter.add(TokenPredicate.FALSE);
}
private static final FilterPermanent filter2 = new FilterPermanent(SubType.GOLEM, "Golems");