From dfe29406232c8cd1e2edff3605b1fb012c949ddc Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Fri, 20 Sep 2013 08:17:43 +0200 Subject: [PATCH] * Cutthroat Maneuver - Fixed tooltip text saying +2/+2 instead of correctly +1/+1. --- Mage.Sets/src/mage/sets/theros/CutthroatManeuver.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/theros/CutthroatManeuver.java b/Mage.Sets/src/mage/sets/theros/CutthroatManeuver.java index 8d013c3ae5d..c19dda36a3f 100644 --- a/Mage.Sets/src/mage/sets/theros/CutthroatManeuver.java +++ b/Mage.Sets/src/mage/sets/theros/CutthroatManeuver.java @@ -52,7 +52,7 @@ public class CutthroatManeuver extends CardImpl { // Up to two target creatures each get +1/+1 and gain lifelink until end of turn. Effect effect = new BoostTargetEffect(1,1, Duration.EndOfTurn); - effect.setText("Up to two target creatures each get +2/+2"); + effect.setText("Up to two target creatures each get +1/+1"); this.getSpellAbility().addEffect(effect); this.getSpellAbility().addEffect(new GainAbilityTargetEffect(LifelinkAbility.getInstance(), Duration.EndOfTurn, "and gain lifelink until end of turn"));