duplicate attribute name

This commit is contained in:
Ingmar Goudt 2019-12-30 00:04:26 +01:00
parent 813aded7f9
commit f68d6b80ba

View file

@ -39,15 +39,15 @@ public final class DeathbellowWarCry extends CardImpl {
class DeathbellowWarCryTarget extends TargetCardInLibrary { class DeathbellowWarCryTarget extends TargetCardInLibrary {
private static final FilterCard filter private static final FilterCard minotaurFilter
= new FilterCreatureCard("Minotaur creature cards with different names"); = new FilterCreatureCard("Minotaur creature cards with different names");
static { static {
filter.add(new SubtypePredicate(SubType.MINOTAUR)); minotaurFilter.add(new SubtypePredicate(SubType.MINOTAUR));
} }
DeathbellowWarCryTarget() { DeathbellowWarCryTarget() {
super(0, 4, filter); super(0, 4, minotaurFilter);
} }
private DeathbellowWarCryTarget(final DeathbellowWarCryTarget target) { private DeathbellowWarCryTarget(final DeathbellowWarCryTarget target) {