From b905cf34fa9dfc65a0cae91f6cd804f7e74e1eab Mon Sep 17 00:00:00 2001 From: DjB Date: Mon, 15 Feb 2016 08:21:22 -0600 Subject: [PATCH] Update WirewoodPride.java fixed reference and removed (.) from effect text --- Mage.Sets/src/mage/sets/onslaught/WirewoodPride.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Mage.Sets/src/mage/sets/onslaught/WirewoodPride.java b/Mage.Sets/src/mage/sets/onslaught/WirewoodPride.java index aa0c699f8f3..cfe236be87c 100644 --- a/Mage.Sets/src/mage/sets/onslaught/WirewoodPride.java +++ b/Mage.Sets/src/mage/sets/onslaught/WirewoodPride.java @@ -45,9 +45,9 @@ import mage.target.common.TargetCreaturePermanent; */ public class WirewoodPride extends CardImpl { - private static final FilterCreaturePermanent ElfCount = new FilterCreaturePermanent("Elves"); + private static final FilterCreaturePermanent elfCount = new FilterCreaturePermanent("Elves"); static { - ElfCount.add(new SubtypePredicate("Elf")); + elfCount.add(new SubtypePredicate("Elf")); } public WirewoodPride(UUID ownerId) { @@ -55,9 +55,9 @@ public class WirewoodPride extends CardImpl { this.expansionSetCode = "ONS"; // Target creature gets +X/+X until end of turn, where X is the number of Elves on the battlefield. - PermanentsOnBattlefieldCount amount = new PermanentsOnBattlefieldCount(ElfCount); + PermanentsOnBattlefieldCount amount = new PermanentsOnBattlefieldCount(elfCount); Effect effect = new BoostTargetEffect(amount, amount, Duration.EndOfTurn, true); - effect.setText("Target creature gets +X/+X until end of turn, where X is the number of Elves on the battlefield."); + effect.setText("Target creature gets +X/+X until end of turn, where X is the number of Elves on the battlefield"); this.getSpellAbility().addEffect(effect); this.getSpellAbility().addTarget(new TargetCreaturePermanent()); }