From 8fcb1c3e4f093946f46e35f05e94979acdc1698a Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Sun, 1 Dec 2024 18:22:00 +0100 Subject: Recruit French generals in Munich in intro scenario. --- rules.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rules.js b/rules.js index 50486c5..cac0bed 100644 --- a/rules.js +++ b/rules.js @@ -3500,6 +3500,8 @@ function goto_recruit() { } function all_re_entry_cities_for_general(p) { + if (is_intro() && piece_power[p] === P_FRANCE) + return all_home_country_major_fortresses[P_BAVARIA] if (p === ARENBERG) return all_arenberg_major_fortresses return all_home_country_major_fortresses[game.power] @@ -3513,6 +3515,8 @@ function has_re_entry_space_for_general(p) { } function can_re_enter_general_at_city(to) { + if (is_intro() && is_flanders_space(to)) + return false if (is_enemy_controlled_fortress(to)) return false if (has_friendly_supply_train(to)) -- cgit v1.2.3