* Loyal Cathar - Fixed that dies triggered ability also triggered for the night side card.

This commit is contained in:
LevelX2 2015-04-07 23:39:38 +02:00
parent a7211a30d0
commit fd8a18129b
8 changed files with 56 additions and 38 deletions

View file

@ -208,8 +208,9 @@ public class Spell implements StackObject, Card {
return result;
}
//20091005 - 608.2b
if (!game.isSimulation())
if (!game.isSimulation()) {
game.informPlayers(getName() + " has been fizzled.");
}
counter(null, game);
return false;
} else if (this.getCardType().contains(CardType.ENCHANTMENT) && this.getSubtype().contains("Aura")) {
@ -250,8 +251,9 @@ public class Spell implements StackObject, Card {
return result;
} else {
//20091005 - 608.2b
if (!game.isSimulation())
if (!game.isSimulation()) {
game.informPlayers(getName() + " has been fizzled.");
}
counter(null, game);
return false;
}