- "Iron Fist of the Orc" should now correctly stack discarded orc.

This commit is contained in:
marcins78@gmail.com
2013-01-09 22:37:29 +00:00
parent 2356dcc6cf
commit 238ca63343
2 changed files with 3 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ import com.gempukku.lotro.cards.AbstractPermanent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.TriggerConditions;
import com.gempukku.lotro.cards.effects.RemoveTwilightEffect;
import com.gempukku.lotro.cards.effects.StackCardFromPlayEffect;
import com.gempukku.lotro.cards.effects.StackCardFromDiscardEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndDiscardCardsFromPlayEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndDiscardStackedCardsEffect;
import com.gempukku.lotro.common.*;
@@ -46,7 +46,7 @@ public class Card6_064 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);
}
}

View File

@@ -1,6 +1,7 @@
<pre style="font-size:80%">
<b>09 Jan. 2013</b>
- "Gnawing, Biting, Hacking, Burning" should now correctly stack discarded orc.
- "Iron Fist of the Orc" should now correctly stack discarded orc.
<b>05 Jan. 2013</b>
- If you have "No Business of Ours" in play, you can still reveal or look at FP player's hand.