Fix for Morph via CopyCard$ (#5049)

This commit is contained in:
tool4ever
2024-04-16 12:17:55 +02:00
committed by GitHub
parent 9e0fa7c65d
commit 4ccbc9baa6

View File

@@ -117,7 +117,7 @@ public class GameAction {
// Rule 111.8: A token that has left the battlefield can't move to another zone // Rule 111.8: A token that has left the battlefield can't move to another zone
if (!c.isSpell() && c.isToken() && !fromBattlefield && zoneFrom != null && !zoneFrom.is(ZoneType.Stack) if (!c.isSpell() && c.isToken() && !fromBattlefield && zoneFrom != null && !zoneFrom.is(ZoneType.Stack)
&& (cause == null || !(cause instanceof SpellPermanent) || !cause.isCastFromPlayEffect())) { && (cause == null || !(cause instanceof SpellPermanent || cause.isCastFaceDown()) || !cause.isCastFromPlayEffect())) {
return c; return c;
} }