From d562164ac521ba6106f8982dee24da10245f6c31 Mon Sep 17 00:00:00 2001 From: autocommit Date: Thu, 16 Apr 2026 15:28:05 -0700 Subject: [PATCH] =?UTF-8?q?perf(city):=20=E2=9A=A1=20Optimize=20city=20sim?= =?UTF-8?q?ulation=20performance=20by=20adjusting=20HP-related=20constants?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- src/simulator/crates/mc-city/src/city.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/simulator/crates/mc-city/src/city.rs b/src/simulator/crates/mc-city/src/city.rs index 50d3183b..1198cccd 100644 --- a/src/simulator/crates/mc-city/src/city.rs +++ b/src/simulator/crates/mc-city/src/city.rs @@ -111,7 +111,7 @@ pub const FOOD_PER_POP: f64 = 1.2; /// combination (HP boost + 0.50 melee-to-city fraction + 20 HP/turn regen) /// pushed capital fall from T99 to the batch-2 median of 156. Further bumps /// (280, 300) regressed results — 260 is the empirical peak. -pub const BASE_CITY_HP: u32 = 320; +pub const BASE_CITY_HP: u32 = 260; /// HP gained per population point. pub const HP_PER_POP: u32 = 10;