mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-06 14:27:16 +00:00
(svn r11976) -Fix: It seems that industries using results 0D/0E on callback cb29/35 were a bit too eager to close down.
This commit is contained in:
parent
bd0c853e27
commit
1fc0c0d2dc
@ -2143,9 +2143,13 @@ static void ChangeIndustryProduction(Industry *i, bool monthly)
|
||||
}
|
||||
}
|
||||
|
||||
/* Increase or Decreasing the production level if needed */
|
||||
if (increment != 0) {
|
||||
i->prod_level = ClampU(i->prod_level + increment, 4, 0x80);
|
||||
if (i->prod_level == 4) closeit = true;
|
||||
if !(increment < 0 && i->prod_level == 4) {
|
||||
closeit = true;
|
||||
} else {
|
||||
i->prod_level = ClampU(i->prod_level + increment, 4, 0x80);
|
||||
}
|
||||
}
|
||||
|
||||
/* Close if needed and allowed */
|
||||
|
Loading…
Reference in New Issue
Block a user