mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Stromkirk Condemned bug fix - only affects vampires you control
This commit is contained in:
parent
5ac81a4fdc
commit
2e12164999
1 changed files with 3 additions and 0 deletions
|
@ -36,9 +36,11 @@ import mage.cards.CardImpl;
|
|||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.TargetController;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.common.FilterCreaturePermanent;
|
||||
import mage.filter.predicate.mageobject.SubtypePredicate;
|
||||
import mage.filter.predicate.permanent.ControllerPredicate;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -50,6 +52,7 @@ public class StromkirkCondemned extends CardImpl {
|
|||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Vampire"));
|
||||
filter.add(new ControllerPredicate(TargetController.YOU));
|
||||
}
|
||||
|
||||
public StromkirkCondemned(UUID ownerId) {
|
||||
|
|
Loading…
Reference in a new issue