- Cards with "CARDNAME can't be the target of spells." can no longer be targeted by aura spells.

This commit is contained in:
jendave
2011-08-06 21:31:33 +00:00
parent b6c59e619e
commit c8ef3f1a27

View File

@@ -2308,7 +2308,7 @@ public class Card extends MyObservable {
}
public boolean isSpell() {
return (isInstant() || isSorcery());
return (isInstant() || isSorcery() || (isAura() && !AllZoneUtil.getCardsInPlay().contains(this)));
}
public boolean isCreature() {