diff options
-rw-r--r-- | rules.js | 15 |
1 files changed, 3 insertions, 12 deletions
@@ -337,7 +337,7 @@ function discard_card(c) { function recycle_card(c) { array_remove_item(player_hand(), c) - game.strategy_deck.unshift(c) + game.discard.unshift(c) } function remove_card(c) { @@ -1784,17 +1784,6 @@ states.operations_remove_spend = { }, } -states.operations_remove_draw = { - inactive: "use Operations Points", - prompt() { - view.prompt = "Operations: Draw card for removal in Military." - view.actions.draw = 1 - }, - draw() { - attempt_remove_piece(0) - }, -} - function attempt_remove_piece(extra) { clear_undo() let p = game.who @@ -1812,6 +1801,8 @@ function attempt_remove_piece(extra) { logi("Failure") } game.who = -1 + if (game.censorship) + game.discard.unshift(c) resume_operations_remove() } |