diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -3541,11 +3541,13 @@ states.force_march = { // Move Army if (game.selected_general >= 0) { - for (let to of ADJACENT[where]) { - if (!is_sea(to)) { - gen_action_region(to) - if (can_enter_capital(to)) - gen_action_capital(to) + if (game.mip >= 1) { + for (let to of ADJACENT[where]) { + if (!is_sea(to)) { + gen_action_region(to) + if (can_enter_capital(to)) + gen_action_capital(to) + } } } |