- "War Towers" now correctly counts companions over 4.

This commit is contained in:
marcins78@gmail.com
2011-11-25 13:37:04 +00:00
parent 4b3ac86d0a
commit 93b39879f6
2 changed files with 2 additions and 1 deletions

View File

@@ -35,7 +35,7 @@ public class Card7_173 extends AbstractEvent {
public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) {
PlayEventAction action = new PlayEventAction(self);
int companionCount = Filters.countActive(game.getGameState(), game.getModifiersQuerying(), CardType.COMPANION);
int threats = 1 + (Math.min(0, companionCount - 4));
int threats = 1 + (Math.max(0, companionCount - 4));
action.appendEffect(
new AddThreatsEffect(playerId, self, threats));
return action;

View File

@@ -2,6 +2,7 @@
<b>25 Nov. 2011</b>
- "There and Back Again" can be played only on Hobbit companions now.
- Added Besieger and Corsair keywords to deckbuilder.
- "War Towers" now correctly counts companions over 4.
<b>24 Nov. 2011</b>
- "Arrow From the South" - trying to fix it. Maybe this time it will be right.