diff options
-rw-r--r-- | rules.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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() } |