From 4c9ed28ee1fc55380e227226478844fe91ee27f7 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Fri, 11 Sep 2020 12:14:14 -0400 Subject: [PATCH] [ZNR] fixed Sure-Footed Infiltrator being unblockable past end of turn (still no hint fix) (#7046) --- Mage.Sets/src/mage/cards/s/SureFootedInfiltrator.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/s/SureFootedInfiltrator.java b/Mage.Sets/src/mage/cards/s/SureFootedInfiltrator.java index 8c431974081..01c722ddd3a 100644 --- a/Mage.Sets/src/mage/cards/s/SureFootedInfiltrator.java +++ b/Mage.Sets/src/mage/cards/s/SureFootedInfiltrator.java @@ -9,6 +9,7 @@ import mage.abilities.effects.common.combat.CantBeBlockedSourceEffect; import mage.cards.CardImpl; import mage.cards.CardSetInfo; import mage.constants.CardType; +import mage.constants.Duration; import mage.constants.SubType; import mage.filter.common.FilterControlledPermanent; import mage.filter.predicate.Predicates; @@ -41,7 +42,8 @@ public final class SureFootedInfiltrator extends CardImpl { // Tap another untapped Rogue you control: Sure-Footed Infiltrator can't be blocked this turn. this.addAbility(new SimpleActivatedAbility( - new CantBeBlockedSourceEffect(), new TapTargetCost(new TargetControlledPermanent(filter)) + new CantBeBlockedSourceEffect(Duration.EndOfTurn), + new TapTargetCost(new TargetControlledPermanent(filter)) )); // Whenever Sure-Footed Infiltrator deals combat damage to a player, draw a card.