From d80ba99af9a0d030c85e085af625e6571e0fba23 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Fri, 20 Mar 2015 16:56:57 +0100 Subject: [PATCH] * Elusive Spellfist - Fixed that the can't be block effect did not end on turns end. --- Mage.Sets/src/mage/sets/dragonsoftarkir/ElusiveSpellfist.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/dragonsoftarkir/ElusiveSpellfist.java b/Mage.Sets/src/mage/sets/dragonsoftarkir/ElusiveSpellfist.java index d9b89a020a..adc3fba29e 100644 --- a/Mage.Sets/src/mage/sets/dragonsoftarkir/ElusiveSpellfist.java +++ b/Mage.Sets/src/mage/sets/dragonsoftarkir/ElusiveSpellfist.java @@ -64,7 +64,7 @@ public class ElusiveSpellfist extends CardImpl { // Whenever you cast a noncreature spell, Elusive Spellfist gets +1/+0 until end of turn and can't be blocked this turn. Ability ability = new SpellCastControllerTriggeredAbility(new BoostSourceEffect(1,0,Duration.EndOfTurn), filterNonCreature, false); - Effect effect = new CantBeBlockedSourceEffect(); + Effect effect = new CantBeBlockedSourceEffect(Duration.EndOfTurn); effect.setText("and can't be blocked this turn"); ability.addEffect(effect); this.addAbility(ability);