From ecfedbb41323efbf5cf1ff6000e2d0a1bdd183e6 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Wed, 11 Oct 2023 23:02:49 +0200 Subject: fix supply amounts --- rules.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/rules.js b/rules.js index 5d5d603..565b784 100644 --- a/rules.js +++ b/rules.js @@ -4430,11 +4430,18 @@ function get_port_supply_amount(loc) { function get_stronghold_supply_amount(loc) { if (!has_exhausted_marker(loc)) { - let supply = 1 + let supply + if (loc === LOC_LONDON || loc === LOC_CALAIS) + supply = 3 + else if (is_city(loc)) supply = 2 + else + supply = 1 + if (command_has_stafford_branch(loc)) supply += 1 + return modify_supply(loc, supply) } return 0 -- cgit v1.2.3