diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -2182,7 +2182,6 @@ states.take_actions = { enter() { push_undo() enter_capital() - resume_take_actions() }, leave() { @@ -2232,7 +2231,6 @@ states.take_actions = { else if (get_general_location(game.selected_general) !== where) move_army_to(game.selected_general, where) enter_capital() - resume_take_actions() }, } @@ -2933,8 +2931,12 @@ function enter_capital() { } } - if (game.combat) + if (game.combat) { goto_post_combat() + return + } + + resume_take_actions() } function resume_occupy_seat_of_power() { @@ -3550,7 +3552,6 @@ states.force_march = { enter() { push_undo() enter_capital() - resume_take_actions() }, leave() { |