diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-10-18 21:11:01 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-11-17 13:11:28 +0100 |
commit | bc7b97cc2b19d329dd426a8d362c500febc01008 (patch) | |
tree | 09affbff47df9d81e5c9136a519ca7b9e425f2ed | |
parent | d44633c3a08576fae32c078f6ee0fbef0cb626ee (diff) | |
download | rommel-in-the-desert-bc7b97cc2b19d329dd426a8d362c500febc01008.tar.gz |
Use correct port capacity during redeployment.
-rw-r--r-- | rules.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |