Fix Wilhelt, the Rotcleaver triggering off of its own death

This commit is contained in:
PurpleCrowbar 2023-07-05 20:04:53 +01:00
parent f26b1470fa
commit 9cd6c6f269

View file

@ -18,6 +18,7 @@ import mage.filter.FilterPermanent;
import mage.filter.common.FilterControlledPermanent;
import mage.filter.predicate.Predicates;
import mage.filter.predicate.mageobject.AbilityPredicate;
import mage.filter.predicate.mageobject.AnotherPredicate;
import mage.game.permanent.token.ZombieDecayedToken;
import mage.target.common.TargetControlledPermanent;
@ -35,6 +36,7 @@ public final class WilheltTheRotcleaver extends CardImpl {
static {
filter.add(Predicates.not(new AbilityPredicate(DecayedAbility.class)));
filter.add(AnotherPredicate.instance);
}
public WilheltTheRotcleaver(UUID ownerId, CardSetInfo setInfo) {