From f76fdcdd3df4cd8ae0f14bd70b4cd6253c25b77d Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Mon, 24 Jul 2023 01:55:24 +0200 Subject: Fix occupy pretender capital when entering empty capital! --- rules.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'rules.js') diff --git a/rules.js b/rules.js index 35040a0..1ae33be 100644 --- a/rules.js +++ b/rules.js @@ -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() { -- cgit v1.2.3