We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c72d361 + c07f7df commit dbfbf40Copy full SHA for dbfbf40
src/clj/game/cards/programs.clj
@@ -2703,10 +2703,11 @@
2703
(same-card? current-ice (:host card))
2704
(can-pay? state :runner eid (:ice context) nil [(->c :credit (count (:subroutines (get-card state current-ice))))])))
2705
:yes-ability {:async true
2706
- :msg (msg "bypass " (card-str state current-ice))
2707
:effect (req (wait-for
2708
(pay state side (make-eid state eid) card [(->c :credit (count (:subroutines (get-card state current-ice))))])
2709
- (system-msg state :runner (:msg async-result))
+ (let [payment-str (:msg async-result)
+ msg-ab {:msg (str "bypass " (card-str state (:ice context)))}]
2710
+ (print-msg state side msg-ab card nil payment-str))
2711
(bypass-ice state)
2712
(effect-completed state side eid)))}}}]})
2713
0 commit comments