From 7e22f243ed3b324df3da9dba5594c14b4e6794a0 Mon Sep 17 00:00:00 2001 From: Yourself Date: Mon, 18 Nov 2019 07:20:47 -0800 Subject: [PATCH] Fix: typo in town growth rates (#7837) --- src/town_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/town_cmd.cpp b/src/town_cmd.cpp index 8071f43f39..b982ca5621 100644 --- a/src/town_cmd.cpp +++ b/src/town_cmd.cpp @@ -3362,7 +3362,7 @@ static uint GetNormalGrowthRate(Town *t) { static const uint16 _grow_count_values[2][6] = { { 120, 120, 120, 100, 80, 60 }, // Fund new buildings has been activated - { 320, 420, 300, 220, 160, 100 } // Normal values + { 420, 420, 300, 220, 160, 100 } // Normal values }; int n = CountActiveStations(t);