diff --git a/Mage.Sets/src/mage/cards/d/DarksteelSplicer.java b/Mage.Sets/src/mage/cards/d/DarksteelSplicer.java index 0cbc737b044..f56637469d8 100644 --- a/Mage.Sets/src/mage/cards/d/DarksteelSplicer.java +++ b/Mage.Sets/src/mage/cards/d/DarksteelSplicer.java @@ -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");