Add: [NewGRF] Industry behaviour flag to override second cargo production clamping for water industries when using smooth economy.

Smooth economy is only used when the corresponding setting is enabled and the industries does not use the production callback.
This commit is contained in:
Michael Lutz
2020-04-11 17:12:26 +02:00
committed by Niels Martin Hansen
parent 7a09413a1a
commit 6d3c2edc59
2 changed files with 2 additions and 1 deletions

View File

@@ -2677,7 +2677,7 @@ static void ChangeIndustryProduction(Industry *i, bool monthly)
/* Prevent production to overflow or Oil Rig passengers to be over-"produced" */
new_prod = Clamp(new_prod, 1, 255);
if (((indspec->behaviour & INDUSTRYBEH_BUILT_ONWATER) != 0) && j == 1) {
if (((indspec->behaviour & INDUSTRYBEH_BUILT_ONWATER) != 0) && j == 1 && !(indspec->behaviour & INDUSTRYBEH_WATER_NO_CLAMP_PROD)) {
new_prod = Clamp(new_prod, 0, 16);
}