mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
- Cards with "CARDNAME can't be the target of spells." can no longer be targeted by aura spells.
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user