From 9866d308d7df78c6ee0273cf51b4b3789bcaeee0 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Thu, 11 Jul 2013 15:07:12 +0200 Subject: [PATCH] * Shrivel - Fixed tooltip text (Added missing All). --- Mage.Sets/src/mage/sets/riseoftheeldrazi/Shrivel.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/sets/riseoftheeldrazi/Shrivel.java b/Mage.Sets/src/mage/sets/riseoftheeldrazi/Shrivel.java index 4cda3874de4..b0efecf14ac 100644 --- a/Mage.Sets/src/mage/sets/riseoftheeldrazi/Shrivel.java +++ b/Mage.Sets/src/mage/sets/riseoftheeldrazi/Shrivel.java @@ -28,11 +28,12 @@ package mage.sets.riseoftheeldrazi; import java.util.UUID; +import mage.abilities.effects.common.continious.BoostAllEffect; +import mage.cards.CardImpl; import mage.constants.CardType; import mage.constants.Duration; import mage.constants.Rarity; -import mage.abilities.effects.common.continious.BoostAllEffect; -import mage.cards.CardImpl; +import mage.filter.common.FilterCreaturePermanent; /** * @@ -46,7 +47,7 @@ public class Shrivel extends CardImpl { this.color.setBlack(true); - this.getSpellAbility().addEffect(new BoostAllEffect(-1, -1, Duration.EndOfTurn)); + this.getSpellAbility().addEffect(new BoostAllEffect(-1, -1, Duration.EndOfTurn, new FilterCreaturePermanent("All creatures"), false)); } public Shrivel(final Shrivel card) {