feat(city): Introduce culture yield calculation to modify city resource generation logic

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
autocommit 2026-04-12 22:56:51 -07:00
parent d3438ef691
commit 5147510e4e

View file

@ -290,6 +290,7 @@ impl City {
yields.production += 2.0;
yields.gold += 1.0;
yields.science += 1.0;
yields.culture += 1.0;
// Sum worked tile yields
for wt in &self.worked_tiles {