From d7a80dc11defa63efc860f5f2a6c894e14ba7166 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Thu, 24 Sep 2015 19:59:16 +0200 Subject: [PATCH] * Infuse with the Elements - Fixed that one +1/+1 counter too much was placed on target creature. --- .../src/mage/sets/battleforzendikar/InfuseWithTheElements.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/battleforzendikar/InfuseWithTheElements.java b/Mage.Sets/src/mage/sets/battleforzendikar/InfuseWithTheElements.java index 080658ef9cb..5f30903dbf6 100644 --- a/Mage.Sets/src/mage/sets/battleforzendikar/InfuseWithTheElements.java +++ b/Mage.Sets/src/mage/sets/battleforzendikar/InfuseWithTheElements.java @@ -53,7 +53,7 @@ public class InfuseWithTheElements extends CardImpl { // Converge - Put X +1/+1 counters on target creature, where X is the number of colors of mana spent to cast Infuse with the Elements. this.getSpellAbility().setAbilityWord(AbilityWord.CONVERGE); - Effect effect = new AddCountersTargetEffect(CounterType.P1P1.createInstance(), ColorsOfManaSpentToCastCount.getInstance()); + Effect effect = new AddCountersTargetEffect(CounterType.P1P1.createInstance(0), ColorsOfManaSpentToCastCount.getInstance()); effect.setText("Put X +1/+1 counters on target creature, where X is the number of colors of mana spent to cast {this}"); this.getSpellAbility().addEffect(effect); this.getSpellAbility().addTarget(new TargetCreaturePermanent());