Changeset - r8407:d951b027a75a
[Not reviewed]
master
0 1 0
belugas - 16 years ago 2008-01-24 18:28:52
belugas@openttd.org
(svn r11977) -Fix(r11976): not a typo, not a bug. Just a removal that should have been done.
Would help to compile first...
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/industry_cmd.cpp
Show inline comments
 
@@ -2145,7 +2145,7 @@ static void ChangeIndustryProduction(Ind
 

	
 
	/* 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);
0 comments (0 inline, 0 general)