- "Dunlending Patriarch" now correctly applies discount when calculating if it is playable.

This commit is contained in:
marcins78
2013-12-16 17:43:39 +00:00
parent 1f36b40ad5
commit 04a75fb292
2 changed files with 4 additions and 1 deletions

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>16 Dec. 2013</b>
- "Dunlending Patriarch" now correctly applies discount when calculating if it is playable.
<b>3 Dec. 2013</b>
- "Mumak Commander" no longer kills all the minions in its skirmish in addition to the companion.

View File

@@ -37,7 +37,7 @@ public class Card13_088 extends AbstractMinion {
protected int getPotentialExtraPaymentDiscount(String playerId, LotroGame game, PhysicalCard self) {
GameState gameState = game.getGameState();
if (Filters.canSpot(gameState, game.getModifiersQuerying(), Filters.not(self), Culture.MEN, CardType.MINION))
return -gameState.getWounds(gameState.getRingBearer(gameState.getCurrentPlayerId()));
return gameState.getWounds(gameState.getRingBearer(gameState.getCurrentPlayerId()));
return 0;
}