diff options
author | Tor Andersson <tor@ccxvii.net> | 2025-03-28 17:44:14 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2025-03-28 17:44:14 +0100 |
commit | 06a568626ee3294d02779294a87a6249df19a8b9 (patch) | |
tree | 80720e9d7e3c9389b018fb1539b9bc8b5ec38c22 /rules.js | |
parent | db493cf2a4b4c589106d66117cc35dfe52ead7bb (diff) | |
download | land-and-freedom-06a568626ee3294d02779294a87a6249df19a8b9.tar.gz |
Fix bug with "peek at fascist cards" deck construction.
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1570,7 +1570,7 @@ states.peek_fascist_cards = { inactive: 'peek at Fascist cards', prompt() { gen_spend_hero_points(); - view.prompt = 'Return one card to the top of the Fascist deck.'; + view.prompt = 'Return one Fascist card to the top of the Fascist deck and discard the others.'; view.fascist_cards = game.fascist_cards; for (const c of game.fascist_cards) { gen_action_card(c); @@ -1580,6 +1580,7 @@ states.peek_fascist_cards = { resolve_spend_hp(); }, card(c) { + log(">Peeked at top three Fascist cards, returned one, and discarded the others"); game.top_of_events_deck = c; for (const ec of game.fascist_cards) { if (ec !== c) { @@ -3058,6 +3059,8 @@ function list_deck(id) { return; if (game.discard[id].includes(card)) return; + if (game.fascist_cards && game.fascist_cards.includes(card)) + return; } else if (game.hands[id].includes(card) || game.discard[id].includes(card) || |