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:
Christian 'ketura' McCarty
2024-12-07 21:37:34 -06:00
parent 2c747e174f
commit 6665348818

View File

@@ -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);
}
};