From 9ffd0c03946dd5fdb8b2531ddcf7e38326d01042 Mon Sep 17 00:00:00 2001 From: Russell Waldrop Date: Mon, 11 Jan 2016 21:29:28 -0500 Subject: [PATCH] Fix typo in landfall description Changed description from (..+4/44 to ..+4/+4). --- Mage.Sets/src/mage/sets/worldwake/Groundswell.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/sets/worldwake/Groundswell.java b/Mage.Sets/src/mage/sets/worldwake/Groundswell.java index fdcb5411d82..d6c14a8ff68 100644 --- a/Mage.Sets/src/mage/sets/worldwake/Groundswell.java +++ b/Mage.Sets/src/mage/sets/worldwake/Groundswell.java @@ -50,13 +50,13 @@ public class Groundswell extends CardImpl { this.expansionSetCode = "WWK"; // Target creature gets +2/+2 until end of turn. - //Landfall - If you had a land enter the battlefield under your control this turn, that creature gets +4/+4 until end of turn instead. + // Landfall - If you had a land enter the battlefield under your control this turn, that creature gets +4/+4 until end of turn instead. this.getSpellAbility().addWatcher(new LandfallWatcher()); this.getSpellAbility().addEffect(new ConditionalOneShotEffect( new AddContinuousEffectToGame(new BoostTargetEffect(4, 4, Duration.EndOfTurn)), new AddContinuousEffectToGame(new BoostTargetEffect(2, 2, Duration.EndOfTurn)), LandfallCondition.getInstance(), - "Target creature gets +2/+2 until end of turn.
Landfall — If you had a land enter the battlefield under your control this turn, that creature gets +4/44 until end of turn instead")); + "Target creature gets +2/+2 until end of turn.
Landfall — If you had a land enter the battlefield under your control this turn, that creature gets +4/+4 until end of turn instead")); this.getSpellAbility().addTarget(new TargetCreaturePermanent()); }