diff --git a/Mage/src/mage/abilities/effects/keyword/ProtectionChosenColorAttachedEffect.java b/Mage/src/mage/abilities/effects/keyword/ProtectionChosenColorAttachedEffect.java index aa514a45dd9..dd363575cef 100644 --- a/Mage/src/mage/abilities/effects/keyword/ProtectionChosenColorAttachedEffect.java +++ b/Mage/src/mage/abilities/effects/keyword/ProtectionChosenColorAttachedEffect.java @@ -88,7 +88,7 @@ public class ProtectionChosenColorAttachedEffect extends ContinuousEffectImpl { if (protectionAbility != null) { Permanent attachedTo = game.getPermanent(attachement.getAttachedTo()); if (attachedTo != null) { - attachement.addAbility(protectionAbility, source.getSourceId(), game); + attachedTo.addAbility(protectionAbility, source.getSourceId(), game); } return true; }