- Allow Auras to Enchant cards in graveyards for (Animate Dead and Spellwewaver Volute)

This commit is contained in:
Sol
2012-12-07 02:21:45 +00:00
parent 5dbc5318a0
commit 5c52d7209b

View File

@@ -1098,7 +1098,9 @@ public class GameAction {
if (entity instanceof Card) {
final Card perm = (Card) entity;
if (!perm.isInPlay() || !perm.canBeEnchantedBy(c)) {
ZoneType tgtZone = tgt.getZone().get(0);
if (!perm.isInZone(tgtZone) || !perm.canBeEnchantedBy(c)) {
c.unEnchantEntity(perm);
this.moveToGraveyard(c);
checkAgain = true;