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; }