Skip to content

Commit

Permalink
Merge pull request #6969 from NBKelly/automata-release
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahTheDuke authored Aug 1, 2023
2 parents 53cc2d7 + c1a76fa commit 33828f1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/clj/game/cards/ice.clj
Original file line number Diff line number Diff line change
Expand Up @@ -2231,7 +2231,8 @@
state side
(if (zero? (:click runner))
{:msg "give the runner 1 tag"
:effect (effect (give-tags 1))}
:async true
:effect (req (gain-tags state :runner eid 1))}
{;:msg "give the runner 1 tag unless they spend [click]"
:player :runner
:prompt "Choose one"
Expand Down
6 changes: 4 additions & 2 deletions src/clj/game/cards/identities.clj
Original file line number Diff line number Diff line change
Expand Up @@ -585,8 +585,10 @@
:effect (req (let [top (take 3 (:deck corp))]
(continue-ability
state :corp
{:prompt "Install a card?"
:choices (req (conj top "No Thanks"))
{:prompt (msg (str "The top cards are " (str (str/join ", " (map :title top))) ". Install a card?"))
:choices (req (conj
(filter #(not (operation? %)) top)
"No Thanks"))
:msg (msg (if (= "No Thanks" target)
"decline to install a card"
(str "install the "
Expand Down

0 comments on commit 33828f1

Please sign in to comment.