- "Argument Ready to Hand" no longer discards companions.

This commit is contained in:
marcins78@gmail.com
2012-06-28 10:22:12 +00:00
parent f9abcd0953
commit 15992dc7b0
2 changed files with 5 additions and 5 deletions

View File

@@ -4,10 +4,7 @@ import com.gempukku.lotro.cards.AbstractEvent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.effects.choose.ChooseOpponentEffect;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Phase;
import com.gempukku.lotro.common.Race;
import com.gempukku.lotro.common.Side;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.filters.Filter;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
@@ -56,7 +53,7 @@ public class Card12_001 extends AbstractEvent {
@Override
protected void cardSelected(LotroGame game, PhysicalCard card) {
action.insertEffect(
new DiscardCardsFromPlayEffect(self, hasRace, Filters.not(card.getBlueprint().getRace())));
new DiscardCardsFromPlayEffect(self, hasRace, CardType.MINION, Filters.not(card.getBlueprint().getRace())));
}
});
}

View File

@@ -1,5 +1,8 @@
<pre style="font-size:80%">
<b>27 Jun. 2012</b>
- "Argument Ready to Hand" no longer discards companions.
<b>28 Jun. 2012</b>
- "Great Cost" now makes the FP player to put the card from hand on top of the deck and also the condition discards
itself.
- "Rush of Steeds" should now work correctly.