Changeset - r17249:ff1bbdaacfe2
[Not reviewed]
master
0 1 0
alberth - 13 years ago 2011-02-06 17:21:49
alberth@openttd.org
(svn r21999) -Fix [FS#4474] (r21969): Use 'very low' industry density for generating industries in the SE.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/industry_cmd.cpp
Show inline comments
 
@@ -1903,7 +1903,7 @@ static uint GetNumberOfIndustries()
 
	};
 

	
 
	assert(_settings_game.difficulty.number_industries < lengthof(numof_industry_table));
 
	uint difficulty = (_game_mode != GM_EDITOR) ? _settings_game.difficulty.number_industries : 1;
 
	uint difficulty = (_game_mode != GM_EDITOR) ? _settings_game.difficulty.number_industries : 2;
 
	return ScaleByMapSize(numof_industry_table[difficulty]);
 
}
 

	
0 comments (0 inline, 0 general)