Skip to content

Commit dbfbf40

Browse files
authoredApr 7, 2024··
Merge pull request #7376 from francescopellegrini/fix/physarum-entangler-cost-msg
2 parents c72d361 + c07f7df commit dbfbf40

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎src/clj/game/cards/programs.clj

+3-2
Original file line numberDiff line numberDiff line change
@@ -2703,10 +2703,11 @@
27032703
(same-card? current-ice (:host card))
27042704
(can-pay? state :runner eid (:ice context) nil [(->c :credit (count (:subroutines (get-card state current-ice))))])))
27052705
:yes-ability {:async true
2706-
:msg (msg "bypass " (card-str state current-ice))
27072706
:effect (req (wait-for
27082707
(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))
2708+
(let [payment-str (:msg async-result)
2709+
msg-ab {:msg (str "bypass " (card-str state (:ice context)))}]
2710+
(print-msg state side msg-ab card nil payment-str))
27102711
(bypass-ice state)
27112712
(effect-completed state side eid)))}}}]})
27122713

0 commit comments

Comments
 (0)
Please sign in to comment.