mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
[EVE]fixed Scarecrone. Predicate added to wrong filter
This commit is contained in:
parent
9d3faa7327
commit
62d5d43a33
1 changed files with 4 additions and 5 deletions
|
@ -28,10 +28,6 @@
|
|||
package mage.sets.eventide;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.Zone;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
|
@ -41,6 +37,9 @@ import mage.abilities.costs.mana.GenericManaCost;
|
|||
import mage.abilities.effects.common.DrawCardControllerEffect;
|
||||
import mage.abilities.effects.common.ReturnFromGraveyardToBattlefieldTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.FilterCard;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
import mage.filter.predicate.mageobject.CardTypePredicate;
|
||||
|
@ -58,7 +57,7 @@ public class Scarecrone extends CardImpl<Scarecrone> {
|
|||
static {
|
||||
filter.add(new CardTypePredicate(CardType.ARTIFACT));
|
||||
filter.add(new CardTypePredicate(CardType.CREATURE));
|
||||
filter.add(new SubtypePredicate("Scarecrow"));
|
||||
filterScarecrow.add(new SubtypePredicate("Scarecrow"));
|
||||
}
|
||||
|
||||
public Scarecrone(UUID ownerId) {
|
||||
|
|
Loading…
Reference in a new issue