Skip to content

Commit

Permalink
Fix CST
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahTheDuke committed Oct 16, 2019
1 parent 8882af2 commit 003febe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/clj/game/cards/agendas.clj
Original file line number Diff line number Diff line change
Expand Up @@ -391,10 +391,10 @@
:effect (effect (gain-bad-publicity :corp 1))}}

"Corporate Sales Team"
(let [e {:effect (req (when (pos? (get-counters card :credit))
(gain-credits state :corp 1)
(system-msg state :corp (str "uses Corporate Sales Team to gain 1 [Credits]"))
(add-counter state side card :credit -1)))}]
(let [e {:req (req (pos? (get-counters card :credit)))
:msg "gain 1 [Credits]"
:effect (req (gain-credits state :corp 1)
(add-counter state side card :credit -1))}]
{:effect (effect (add-counter card :credit 10))
:silent (req true)
:events [(assoc e :event :runner-turn-begins)
Expand Down

0 comments on commit 003febe

Please sign in to comment.