From f68d6b80bade476eacf1f6db0eb0193506ef5d66 Mon Sep 17 00:00:00 2001 From: Ingmar Goudt Date: Mon, 30 Dec 2019 00:04:26 +0100 Subject: [PATCH] duplicate attribute name --- Mage.Sets/src/mage/cards/d/DeathbellowWarCry.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/cards/d/DeathbellowWarCry.java b/Mage.Sets/src/mage/cards/d/DeathbellowWarCry.java index 4997c51fd99..2a70c911977 100644 --- a/Mage.Sets/src/mage/cards/d/DeathbellowWarCry.java +++ b/Mage.Sets/src/mage/cards/d/DeathbellowWarCry.java @@ -39,15 +39,15 @@ public final class DeathbellowWarCry extends CardImpl { class DeathbellowWarCryTarget extends TargetCardInLibrary { - private static final FilterCard filter + private static final FilterCard minotaurFilter = new FilterCreatureCard("Minotaur creature cards with different names"); static { - filter.add(new SubtypePredicate(SubType.MINOTAUR)); + minotaurFilter.add(new SubtypePredicate(SubType.MINOTAUR)); } DeathbellowWarCryTarget() { - super(0, 4, filter); + super(0, 4, minotaurFilter); } private DeathbellowWarCryTarget(final DeathbellowWarCryTarget target) {