mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
duplicate attribute name
This commit is contained in:
parent
813aded7f9
commit
f68d6b80ba
1 changed files with 3 additions and 3 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue