fix the state action of illegal aura cards to be move to graveyard instead of just destroy.

This commit is contained in:
jendave
2011-08-06 14:40:31 +00:00
parent 73fa0b8181
commit 72a87f1007

View File

@@ -435,7 +435,8 @@ public class GameAction {
&& !perm.getType().contains("Creature"))
|| (c.getKeyword().contains("Enchant tapped creature") && perm.isUntapped() ) ) {
c.unEnchantCard(perm);
destroy(c);
//changed from destroy (and rules-wise, I don't think it's a sacrifice)
moveToGraveyard(c);
}
}
}//if isAura