From 49d94cb84f7e53cf96e8eccb82419588c96720b6 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 12 Jul 2020 09:25:34 +0200 Subject: [PATCH] * Crystalline Resonance - fixed that the duration of the copy effect erroneously didn't end on the next turn of the controller (fixes #6825). --- .../java/mage/abilities/effects/common/CopyPermanentEffect.java | 1 + 1 file changed, 1 insertion(+) diff --git a/Mage/src/main/java/mage/abilities/effects/common/CopyPermanentEffect.java b/Mage/src/main/java/mage/abilities/effects/common/CopyPermanentEffect.java index 23757957d90..e50ba8830ea 100644 --- a/Mage/src/main/java/mage/abilities/effects/common/CopyPermanentEffect.java +++ b/Mage/src/main/java/mage/abilities/effects/common/CopyPermanentEffect.java @@ -64,6 +64,7 @@ public class CopyPermanentEffect extends OneShotEffect { this.bluePrintPermanent = effect.bluePrintPermanent.copy(); } this.useTargetOfAbility = effect.useTargetOfAbility; + this.duration = effect.duration; } @Override