From c2af7836aba7a0cd0350d92ab827b399ba89680c Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Thu, 11 Dec 2014 12:57:44 +0100 Subject: [PATCH] * Elvish Handservant - Fixed that it wrongly only triggered for spells of the controller instead of from spells of all players in range. --- Mage.Sets/src/mage/sets/lorwyn/ElvishHandservant.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/sets/lorwyn/ElvishHandservant.java b/Mage.Sets/src/mage/sets/lorwyn/ElvishHandservant.java index 01b330df8c..9805a1b150 100644 --- a/Mage.Sets/src/mage/sets/lorwyn/ElvishHandservant.java +++ b/Mage.Sets/src/mage/sets/lorwyn/ElvishHandservant.java @@ -31,7 +31,7 @@ import java.util.UUID; import mage.constants.CardType; import mage.constants.Rarity; import mage.MageInt; -import mage.abilities.common.SpellCastControllerTriggeredAbility; +import mage.abilities.common.SpellCastAllTriggeredAbility; import mage.abilities.effects.common.counter.AddCountersSourceEffect; import mage.cards.CardImpl; import mage.counters.CounterType; @@ -58,7 +58,9 @@ public class ElvishHandservant extends CardImpl { this.color.setGreen(true); this.power = new MageInt(1); this.toughness = new MageInt(1); - this.addAbility(new SpellCastControllerTriggeredAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance(1)), filter, true)); + + // Whenever a player casts a Giant spell, you may put a +1/+1 counter on Elvish Handservant. + this.addAbility(new SpellCastAllTriggeredAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance(1)), filter, true)); } public ElvishHandservant(final ElvishHandservant card) {