(svn r11977) -Fix(r11976): not a typo, not a bug. Just a removal that should have been done.

Would help to compile first...
This commit is contained in:
belugas 2008-01-24 18:28:52 +00:00
parent 1fc0c0d2dc
commit 44d085af6c
1 changed files with 1 additions and 1 deletions

View File

@ -2145,7 +2145,7 @@ static void ChangeIndustryProduction(Industry *i, bool monthly)
/* Increase or Decreasing the production level if needed */
if (increment != 0) {
if !(increment < 0 && i->prod_level == 4) {
if (increment < 0 && i->prod_level == 4) {
closeit = true;
} else {
i->prod_level = ClampU(i->prod_level + increment, 4, 0x80);