File diff r7921:8e674055514f → r7922:d7c3cc15726d
src/industry_cmd.cpp
Show inline comments
 
@@ -1628,7 +1628,7 @@ CommandCost CmdBuildIndustry(TileIndex t
 
	} else {
 
		int count = indspec->num_table;
 
		const IndustryTileTable * const *itt = indspec->table;
 
		int num = clamp(p2, 0, count - 1);
 
		int num = Clamp(p2, 0, count - 1);
 

	
 
		_error_message = STR_0239_SITE_UNSUITABLE;
 
		do {
 
@@ -2047,7 +2047,7 @@ static void ChangeIndustryProduction(Ind
 
					new_prod += max(((RandomRange(50) + 10) * old_prod) >> 8, 1U);
 
				}
 

	
 
				new_prod = clamp(new_prod, 1, 255);
 
				new_prod = Clamp(new_prod, 1, 255);
 
				/* Do not stop closing the industry when it has the lowest possible production rate */
 
				if (new_prod == old_prod && old_prod > 1) {
 
					closeit = false;