From ad5699f1192618dfe37860d31002f3f9c8198a9c Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Tue, 27 Dec 2016 11:48:18 +0100 Subject: [PATCH] * Fixed a bug that the color choice was fixed if used in activated abilities (e.g. Obi-Wan Kenobi) beyond the first usgae. --- .../common/continuous/GainProtectionFromColorTargetEffect.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage/src/main/java/mage/abilities/effects/common/continuous/GainProtectionFromColorTargetEffect.java b/Mage/src/main/java/mage/abilities/effects/common/continuous/GainProtectionFromColorTargetEffect.java index 88fbd03cc98..9458a18b49b 100644 --- a/Mage/src/main/java/mage/abilities/effects/common/continuous/GainProtectionFromColorTargetEffect.java +++ b/Mage/src/main/java/mage/abilities/effects/common/continuous/GainProtectionFromColorTargetEffect.java @@ -63,7 +63,7 @@ public class GainProtectionFromColorTargetEffect extends GainAbilityTargetEffect public GainProtectionFromColorTargetEffect(final GainProtectionFromColorTargetEffect effect) { super(effect); - choice = effect.choice; + this.choice = effect.choice.copy(); } @Override