From dfc290a206181913488e2c539ac876d32196bf3f Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Wed, 28 Apr 2021 13:26:55 -0400 Subject: [PATCH] fixed a change left out from previous commit failure --- .../src/main/java/mage/abilities/effects/common/CopyEffect.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage/src/main/java/mage/abilities/effects/common/CopyEffect.java b/Mage/src/main/java/mage/abilities/effects/common/CopyEffect.java index 5db00825bc2..ca4b712d1ba 100644 --- a/Mage/src/main/java/mage/abilities/effects/common/CopyEffect.java +++ b/Mage/src/main/java/mage/abilities/effects/common/CopyEffect.java @@ -32,7 +32,7 @@ public class CopyEffect extends ContinuousEffectImpl { } public CopyEffect(Duration duration, MageObject copyFromObject, UUID copyToObjectId) { - super(duration, Layer.CopyEffects_1, SubLayer.NA, Outcome.BecomeCreature); + super(duration, Layer.CopyEffects_1, SubLayer.CopyEffects_1a, Outcome.BecomeCreature); this.copyFromObject = copyFromObject; this.copyToObjectId = copyToObjectId; }