diff --git a/src/clj/game/cards/ice.clj b/src/clj/game/cards/ice.clj index 921132cc7f..9143197303 100644 --- a/src/clj/game/cards/ice.clj +++ b/src/clj/game/cards/ice.clj @@ -4035,6 +4035,7 @@ {:prompt "Shuffle up 1 card from HQ or Archives into R&D?" :label "You may shuffle 1 card from HQ or Archives into R&D" :show-discard true + :waiting-prompt true :choices {:card #(and (corp? %) (or (in-hand? %) (in-discard? %)))} diff --git a/src/clj/game/core/drawing.clj b/src/clj/game/core/drawing.clj index 6aa62cf382..bb73706a97 100644 --- a/src/clj/game/core/drawing.clj +++ b/src/clj/game/core/drawing.clj @@ -119,6 +119,7 @@ (continue-ability state side {:optional {:prompt (str "Draw " (quantify n "card") "?") + :waiting-prompt true :yes-ability {:async true :msg (msg "draw " (quantify n " card")) :effect (effect (draw state side eid n))}