diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set2/isengard/Card2_048.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set2/isengard/Card2_048.java index ff3bf9f2d..d5f9132a6 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set2/isengard/Card2_048.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set2/isengard/Card2_048.java @@ -2,6 +2,7 @@ package com.gempukku.lotro.cards.set2.isengard; import com.gempukku.lotro.cards.AbstractAttachable; import com.gempukku.lotro.cards.PlayConditions; +import com.gempukku.lotro.cards.TriggerConditions; import com.gempukku.lotro.cards.actions.AttachPermanentAction; import com.gempukku.lotro.cards.effects.ExertCharactersEffect; import com.gempukku.lotro.cards.effects.SelfDiscardEffect; @@ -57,8 +58,7 @@ public class Card2_048 extends AbstractAttachable { @Override public List getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, PhysicalCard self) { - if (effectResult.getType() == EffectResult.Type.WHEN_MOVE_FROM - && game.getGameState().getCurrentSite() == self) { + if (TriggerConditions.movesFrom(game, effectResult, self.getAttachedTo())) { RequiredTriggerAction action = new RequiredTriggerAction(self); action.appendEffect( new ExertCharactersEffect(self, CardType.COMPANION)); diff --git a/gemp-lotr/gemp-lotr-web/src/main/webapp/includes/changeLog.html b/gemp-lotr/gemp-lotr-web/src/main/webapp/includes/changeLog.html index 5aa89d0c5..36b44d5b1 100644 --- a/gemp-lotr/gemp-lotr-web/src/main/webapp/includes/changeLog.html +++ b/gemp-lotr/gemp-lotr-web/src/main/webapp/includes/changeLog.html @@ -1,4 +1,7 @@
+26 Dec. 2011
+- "Wizard Storm" should now work when fellowship moves from the site it's attached to.
+
 22 Dec. 2011
 - "Valley of the Silverlode" should not correctly allow to heal every Hobbit companion.
 - "Sneaking!" will now correctly heal Smeagol, if it's skirmishing a minion(s) of higher or equal vitality.