diff options
author | maedhros <maedhros@openttd.org> | 2007-11-26 19:23:53 +0000 |
---|---|---|
committer | maedhros <maedhros@openttd.org> | 2007-11-26 19:23:53 +0000 |
commit | 8e273e0f887381d4a2fe50706e428dedf710436a (patch) | |
tree | a51fa2316c766164cbc8f62121b9b106f335a859 /src/industry_cmd.cpp | |
parent | 71c10f7df7c1ec20bbc0c23580041a2e337b2500 (diff) | |
download | openttd-8e273e0f887381d4a2fe50706e428dedf710436a.tar.xz |
(svn r11528) -Fix (r11500): With smooth economy enabled, industries that should only decrease production would always increase it when more than 60% was transported.
Diffstat (limited to 'src/industry_cmd.cpp')
-rw-r--r-- | src/industry_cmd.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp index 1aa369c5e..05da2c9dc 100644 --- a/src/industry_cmd.cpp +++ b/src/industry_cmd.cpp @@ -2052,7 +2052,11 @@ static void ChangeIndustryProduction(Industry *i, bool monthly) new_prod = old_prod = i->production_rate[j]; - if (only_decrease || Chance16(1, 3)) mult *= -1; + if (only_decrease) { + mult = -1; + } else if (Chance16(1, 3)) { + mult *= -1; + } if (Chance16(1, 22)) { new_prod += mult * (max(((RandomRange(50) + 10) * old_prod) >> 8, 1U)); |