- "Scaffolding" should correctly allow to stack a minion when it was discarded.

This commit is contained in:
marcins78
2013-01-28 10:01:11 +00:00
parent ad4174a756
commit 7f537d2a0f
2 changed files with 3 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
<pre style="font-size:80%">
<b>28 Jan. 2013</b>
- "Home and Hearth" no longer triggers off Hobbits played by Shadow player.
- "Scaffolding" should correctly allow to stack a minion when it was discarded.
<b>21 Jan. 2013</b>
- "Shapes Slowly Advancing" corrupts Ring-bearer whenever there are 4 tokens on the condition, even if the last token

View File

@@ -3,7 +3,7 @@ package com.gempukku.lotro.cards.set6.isengard;
import com.gempukku.lotro.cards.AbstractPermanent;
import com.gempukku.lotro.cards.TriggerConditions;
import com.gempukku.lotro.cards.effects.PreventCardEffect;
import com.gempukku.lotro.cards.effects.StackCardFromPlayEffect;
import com.gempukku.lotro.cards.effects.StackCardFromDiscardEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndDiscardStackedCardsEffect;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.filters.Filters;
@@ -47,7 +47,7 @@ public class Card6_073 extends AbstractPermanent {
action.setTriggerIdentifier(self.getCardId()+"-"+discardedOrc.getCardId());
action.setText("Stack " + GameUtils.getCardLink(discardedOrc));
action.appendEffect(
new StackCardFromPlayEffect(discardedOrc, self));
new StackCardFromDiscardEffect(discardedOrc, self));
return Collections.singletonList(action);
}
}