From b6c4df68ca86563b6e4590836df8b7fcf7c0a71c Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Fri, 25 Oct 2024 13:35:55 +0200 Subject: fix expeditionary corps swap-up --- rules.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rules.js b/rules.js index 998ceb2..6df687f 100644 --- a/rules.js +++ b/rules.js @@ -4298,9 +4298,9 @@ function check_expeditionary_corps(power, space, active) { function goto_expeditionary_corps() { if (check_expeditionary_corps(P_PRUSSIA, EAST_PRUSSIA, game.russia >= 5)) return - if (check_expeditionary_corps(P_FRANCE, FRENCH_ITALY_BOX, game.italy <= 2)) + if (check_expeditionary_corps(P_FRANCE, FRENCH_ITALY_BOX, game.italy >= 8)) return - if (check_expeditionary_corps(P_AUSTRIA, AUSTRIAN_ITALY_BOX, game.italy >= 8)) + if (check_expeditionary_corps(P_AUSTRIA, AUSTRIAN_ITALY_BOX, game.italy <= 2)) return goto_saxony_defection() } -- cgit v1.2.3