mirror of
https://github.com/correl/mage.git
synced 2025-01-12 03:00:13 +00:00
Stensia Banquet fix
This commit is contained in:
parent
bc1f4e409c
commit
966de10386
1 changed files with 2 additions and 5 deletions
|
@ -35,10 +35,8 @@ import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
|||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.TargetController;
|
||||
import mage.filter.common.FilterLandPermanent;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
import mage.filter.predicate.mageobject.SubtypePredicate;
|
||||
import mage.filter.predicate.permanent.ControllerPredicate;
|
||||
import mage.target.common.TargetOpponent;
|
||||
|
||||
/**
|
||||
|
@ -47,11 +45,10 @@ import mage.target.common.TargetOpponent;
|
|||
*/
|
||||
public class StensiaBanquet extends CardImpl {
|
||||
|
||||
private static final FilterLandPermanent filter = new FilterLandPermanent("Vampires you control");
|
||||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("Vampires you control");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Vampire"));
|
||||
filter.add(new ControllerPredicate(TargetController.YOU));
|
||||
}
|
||||
|
||||
public StensiaBanquet(UUID ownerId) {
|
||||
|
|
Loading…
Reference in a new issue