- Phased out cards will cause spells targeting them to fizzle again

This commit is contained in:
Sol
2013-03-15 00:12:11 +00:00
parent 849a117a23
commit 1728cf4440

View File

@@ -8912,6 +8912,10 @@ public class Card extends GameEntity implements Comparable<Card> {
return false; return false;
} }
if (this.isPhasedOut()) {
return false;
}
if (this.getKeyword() != null) { if (this.getKeyword() != null) {
final Card source = sa.getSourceCard(); final Card source = sa.getSourceCard();