diff options
-rw-r--r-- | rules.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3369,7 +3369,7 @@ function can_play_force_march() { return true } for (let i = 0; i < 12; ++i) { - if (has_lone_militia(i) && has_militia_battled(i) && is_own_province(i)) + if (has_lone_militia(i) && has_militia_battled(i) && !has_militia_force_marched(i) && is_own_province(i)) return true } } @@ -3391,7 +3391,7 @@ states.force_march_who = { gen_action_general(id) } for (let i = 0; i < 12; ++i) { - if (has_lone_militia(i) && has_militia_battled(i) && is_own_province(i)) + if (has_lone_militia(i) && has_militia_battled(i) && !has_militia_force_marched(i) && is_own_province(i)) gen_action_militia(i) } }, |