From d673de7c526bacfec00a1f10858161f1bad5c7f2 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Thu, 18 Apr 2024 21:40:30 +0200 Subject: Cannot have more than 15 assets. --- rules.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules.ts b/rules.ts index 4c515af..ed7a7cf 100644 --- a/rules.ts +++ b/rules.ts @@ -3220,7 +3220,7 @@ function can_add_troops_sof(lord: Lord, locale: Locale) { // === 3.4.5 LEVY TRANSPORT function can_add_transport(who: Lord, what: Asset) { - return get_lord_assets(who, what) < 100 + return get_lord_assets(who, what) < 14 } // === 3.4.6 LEVY CAPABILITY === -- cgit v1.2.3