From 2765f0be3185b1784def4dff5cd579c9971db9b8 Mon Sep 17 00:00:00 2001 From: openSrcCoder Date: Mon, 25 May 2015 12:44:54 -0700 Subject: [PATCH] Fixed Feeding Frenzy tooltip, and simplified sign inversion. --- Mage.Sets/src/mage/sets/onslaught/FeedingFrenzy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/onslaught/FeedingFrenzy.java b/Mage.Sets/src/mage/sets/onslaught/FeedingFrenzy.java index de8e2222e3e..ff57cf267b9 100644 --- a/Mage.Sets/src/mage/sets/onslaught/FeedingFrenzy.java +++ b/Mage.Sets/src/mage/sets/onslaught/FeedingFrenzy.java @@ -56,7 +56,7 @@ public class FeedingFrenzy extends CardImpl { this.expansionSetCode = "ONS"; // Target creature gets -X/-X until end of turn, where X is the number of Zombies on the battlefield. - DynamicValue x = new SignInversionDynamicValue(new PermanentsOnBattlefieldCount(new FilterCreaturePermanent("Zombie", "Zombie creatures"))); + DynamicValue x = new PermanentsOnBattlefieldCount(new FilterCreaturePermanent("Zombie", "Zombie on the battlefield"), -1); this.getSpellAbility().addEffect(new BoostTargetEffect(x, x, Duration.EndOfTurn)); this.getSpellAbility().addTarget(new TargetCreaturePermanent()); }