- "War Towers" now correctly counts companions over 4.
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user