SpellAbilityRestriction; fix for mayPlay only for non-Basic Spells (until the mayPlay are more connected)

This commit is contained in:
Hanmac
2016-07-29 10:11:29 +00:00
parent 7bbe21c35e
commit 41ce3af268

View File

@@ -216,7 +216,7 @@ public class SpellAbilityRestriction extends SpellAbilityVariables {
if (cardZone != null && cardZone.is(ZoneType.Stack)) {
return false;
}
if (c.mayPlay(activator) != null) {
if (!sa.isBasicSpell() && c.mayPlay(activator) != null) {
return true;
}
if (c.hasKeyword("May be played") && activator.equals(c.getController())) {