File diff r18255:a991a3ab7037 → r18256:4d7d2550ba08
src/industry_cmd.cpp
Show inline comments
 
@@ -1259,13 +1259,13 @@ static CommandCost CheckNewIndustry_Lumb
 
 * Check the conditions of #CHECK_BUBBLEGEN (Industry should be in low land).
 
 * @param tile %Tile to perform the checking.
 
 * @return Succeeded or failed command.
 
 */
 
static CommandCost CheckNewIndustry_BubbleGen(TileIndex tile)
 
{
 
	if (GetTilePixelZ(tile) > TILE_HEIGHT * 4) {
 
	if (GetTileZ(tile) > 4) {
 
		return_cmd_error(STR_ERROR_CAN_ONLY_BE_BUILT_IN_LOW_AREAS);
 
	}
 
	return CommandCost();
 
}
 

	
 
/**