From d8dc95c16f7158622f529ad3c85208ea375890d2 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Fri, 24 Jul 2015 15:10:04 +0200 Subject: [PATCH] * Reworked Cho-Manno's Blessing protection handling (fix). --- .../effects/keyword/ProtectionChosenColorAttachedEffect.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }