mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 04:08:01 +00:00
- Allow Auras to Enchant cards in graveyards for (Animate Dead and Spellwewaver Volute)
This commit is contained in:
@@ -1098,7 +1098,9 @@ public class GameAction {
|
|||||||
|
|
||||||
if (entity instanceof Card) {
|
if (entity instanceof Card) {
|
||||||
final Card perm = (Card) entity;
|
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);
|
c.unEnchantEntity(perm);
|
||||||
this.moveToGraveyard(c);
|
this.moveToGraveyard(c);
|
||||||
checkAgain = true;
|
checkAgain = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user