From bc7b97cc2b19d329dd426a8d362c500febc01008 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Tue, 18 Oct 2022 21:11:01 +0200 Subject: Use correct port capacity during redeployment. --- rules.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rules.js b/rules.js index d659421..3360238 100644 --- a/rules.js +++ b/rules.js @@ -5663,9 +5663,9 @@ function init_buildup() { allied_cards: 0, // remaining port capacity for sea redeployment - bardia: 2, - benghazi: 2, - tobruk: 5, + bardia: is_fortress_axis_controlled(BARDIA) ? 1 : 2, + benghazi: is_fortress_axis_controlled(BENGHAZI) ? 1 : 2, + tobruk: is_fortress_axis_controlled(TOBRUK) ? 2 : 5, // for undo tracking changed: 0 -- cgit v1.2.3