Fixed effects which pull a random number of cards from hand always pulling exactly 2 (for example, Not Easily Avoided)
This commit is contained in:
@@ -145,7 +145,7 @@ public class CardResolver {
|
||||
@Override
|
||||
protected void doPlayEffect(LotroGame game) {
|
||||
List<? extends PhysicalCard> hand = game.getGameState().getHand(handPlayer);
|
||||
List<PhysicalCard> randomCardsFromHand = GameUtils.getRandomCards(hand, 2);
|
||||
List<PhysicalCard> randomCardsFromHand = GameUtils.getRandomCards(hand, count);
|
||||
actionContext.setCardMemory(memory, randomCardsFromHand);
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user