From 95e439170d8ccdbd8a30dfdb46a45b42b13a34a3 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Wed, 16 Feb 2022 15:04:53 +0100 Subject: Check supply line when restoring drilled troops. --- rules.js | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/rules.js b/rules.js index cac9517..6f5743a 100644 --- a/rules.js +++ b/rules.js @@ -1053,8 +1053,7 @@ function set_force_inside(force) { function is_piece_on_map(p) { // TODO: militia boxes? - let s = piece_node(p); - return s !== 0; + return piece_node(p) !== 0; } function is_piece_unused(p) { @@ -5880,8 +5879,14 @@ function can_place_in_space(s) { } function can_restore_unit(p) { - // TODO: out-of-supply drilled troops - return is_piece_on_map(p) && is_piece_unbesieged(p) && is_unit_reduced(p); + if (is_piece_on_map(p) && is_piece_unbesieged(p) && is_unit_reduced(p)) { + if (is_militia_unit(p)) + return true; // always in militia box + if (is_drilled_troops(p)) + return is_in_supply(piece_space(p)); + return true; + } + return false; } function count_french_raids_in_dept(dept) { -- cgit v1.2.3