- "Cave Troll of Moria, Monstrous Friend" should now correctly count the number of cards you can discard from hand to

play it, when figuring out, if it is playable.
This commit is contained in:
marcins78
2013-04-04 09:41:18 +00:00
parent 987cd10a4d
commit 5b18a232d5
2 changed files with 3 additions and 1 deletions

View File

@@ -2,6 +2,8 @@
<b>4 Apr. 2013</b>
- "Peering forward" now correctly applies -2 modifier, if ELVEN card is revealed.
- "Troll of Morannon" has no Damage +1 keyword (per card text).
- "Cave Troll of Moria, Monstrous Friend" should now correctly count the number of cards you can discard from hand to
play it, when figuring out, if it is playable.
<b>25 Mar. 2013</b>
- Changed all images for set 20 from PNG to JPEG.

View File

@@ -31,7 +31,7 @@ public class Card20_256 extends AbstractMinion {
@Override
protected int getPotentialExtraPaymentDiscount(String playerId, LotroGame game, PhysicalCard self) {
return Filters.filter(game.getGameState().getHand(playerId), game.getGameState(), game.getModifiersQuerying(), Culture.MORIA, Filters.not(self)).size();
return Filters.filter(game.getGameState().getHand(playerId), game.getGameState(), game.getModifiersQuerying(), Culture.MORIA, Race.GOBLIN, Filters.not(self)).size();
}
@Override