From aa5e45e69d8a0ad8056bf81e6cc752101d5f5030 Mon Sep 17 00:00:00 2001 From: Loki Date: Tue, 28 Dec 2010 22:45:09 +0200 Subject: [PATCH] description cloning --- .../effects/common/BoostSourceWhileControlsEffect.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Mage/src/mage/abilities/effects/common/BoostSourceWhileControlsEffect.java b/Mage/src/mage/abilities/effects/common/BoostSourceWhileControlsEffect.java index 94e74209f34..1abdc1905c0 100644 --- a/Mage/src/mage/abilities/effects/common/BoostSourceWhileControlsEffect.java +++ b/Mage/src/mage/abilities/effects/common/BoostSourceWhileControlsEffect.java @@ -39,6 +39,7 @@ import mage.filter.FilterPermanent; import mage.game.Game; import mage.game.permanent.Permanent; +import java.util.ArrayList; import java.util.List; /** @@ -62,6 +63,8 @@ public class BoostSourceWhileControlsEffect extends WhileConditionContiniousEffe super(effect); this.power = effect.power; this.toughness = effect.toughness; + this.filterDescription = new ArrayList(); + this.filterDescription.addAll(effect.filterDescription); } @Override