- "It's Mine" should now correctly return the card from discard to hand if it's WRAITH of GOLLUM culture.

This commit is contained in:
marcins78@gmail.com
2011-11-24 15:04:45 +00:00
parent 1939f2efb3
commit bddc8f1fe6
2 changed files with 3 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ package com.gempukku.lotro.cards.set7.gollum;
import com.gempukku.lotro.cards.AbstractPermanent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.effects.DiscardTopCardFromDeckEffect;
import com.gempukku.lotro.cards.effects.PutCardFromDeckIntoHandOrDiscardEffect;
import com.gempukku.lotro.cards.effects.PutCardFromDiscardIntoHandEffect;
import com.gempukku.lotro.cards.effects.RemoveTwilightEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndExertCharactersEffect;
import com.gempukku.lotro.common.*;
@@ -48,7 +48,7 @@ public class Card7_062 extends AbstractPermanent {
final Culture culture = card.getBlueprint().getCulture();
if (culture == Culture.GOLLUM || culture == Culture.WRAITH)
action.appendEffect(
new PutCardFromDeckIntoHandOrDiscardEffect(card));
new PutCardFromDiscardIntoHandEffect(card));
}
}
});

View File

@@ -3,6 +3,7 @@
- "Arrow From the South" - trying to fix it. Maybe this time it will be right.
- "Saved From the Fire" now allows to take only cards of the companions chosen culture into hand from deck and only one
at a time (because of the Rule of 4 rule).
- "It's Mine" should now correctly return the card from discard to hand if it's WRAITH of GOLLUM culture.
<b>23 Nov. 2011</b>
- "Jarnsmid" now modifies the twilight cost of the itmes by -1, rather than +1.