mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18: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() {
|
public boolean isSpell() {
|
||||||
return (isInstant() || isSorcery());
|
return (isInstant() || isSorcery() || (isAura() && !AllZoneUtil.getCardsInPlay().contains(this)));
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isCreature() {
|
public boolean isCreature() {
|
||||||
|
|||||||
Reference in New Issue
Block a user