From bb863d2cc84f47f551bd0b28f86b653b7b178292 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Tue, 17 Sep 2013 00:21:39 +0200 Subject: [PATCH] * Sporemound - Fixed tooltip text. --- Mage.Sets/src/mage/sets/magic2014/Sporemound.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/sets/magic2014/Sporemound.java b/Mage.Sets/src/mage/sets/magic2014/Sporemound.java index 0041bdf9efc..8a0910e41ff 100644 --- a/Mage.Sets/src/mage/sets/magic2014/Sporemound.java +++ b/Mage.Sets/src/mage/sets/magic2014/Sporemound.java @@ -35,7 +35,7 @@ import mage.abilities.effects.common.CreateTokenEffect; import mage.cards.CardImpl; import mage.constants.CardType; import mage.constants.Rarity; -import mage.filter.common.FilterControlledLandPermanent; +import mage.filter.common.FilterLandPermanent; import mage.game.permanent.token.SaprolingToken; /** @@ -55,7 +55,7 @@ public class Sporemound extends CardImpl { // Whenever a land enters the battlefield under your control, put a 1/1 green Saproling creature token onto the battlefield. Effect effect = new CreateTokenEffect(new SaprolingToken()); - this.addAbility(new EntersBattlefieldControlledTriggeredAbility(effect, new FilterControlledLandPermanent("a land you control"))); + this.addAbility(new EntersBattlefieldControlledTriggeredAbility(effect, new FilterLandPermanent("a land"))); } public Sporemound(final Sporemound card) {