mirror of
https://github.com/correl/mage.git
synced 2025-03-12 17:00:08 -09:00
- Fixed issue #3646
This commit is contained in:
parent
dd94d33301
commit
ba5c216146
1 changed files with 2 additions and 2 deletions
|
@ -35,12 +35,12 @@ import mage.abilities.mana.AnyColorManaAbility;
|
|||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.filter.FilterCard;
|
||||
import mage.filter.predicate.mageobject.SubtypePredicate;
|
||||
import mage.target.common.TargetCardInLibrary;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -50,7 +50,7 @@ public class ElvishHarbinger extends CardImpl {
|
|||
|
||||
static final FilterCard filter = new FilterCard("Elf card");
|
||||
static {
|
||||
filter.add(new SubtypePredicate(SubType.ELEMENTAL));
|
||||
filter.add(new SubtypePredicate(SubType.ELF));
|
||||
}
|
||||
public ElvishHarbinger(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{G}");
|
||||
|
|
Loading…
Add table
Reference in a new issue