diff options
-rw-r--r-- | rules.js | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -5498,9 +5498,16 @@ states.send_expeditionary_corps = { inactive: "send expeditionary corps off map", prompt() { prompt("Send expeditionary corps to off map box.") - for (let p of all_power_generals[game.power]) - if (is_piece_on_map_or_eliminated(p)) - gen_action_piece(p) + + let tc_in_hand = 0 + for_each_card_in_hand(c => tc_in_hand += to_value(c)) + + for (let p of all_power_generals[game.power]) { + if (is_piece_on_map_or_eliminated(p)) { + if (game.troops[p] > 0 || tc_in_hand >= 8) + gen_action_piece(p) + } + } }, piece(p) { push_undo() |