Changeset - r6758:c0f7b0ad0a6c
[Not reviewed]
master
0 1 0
rubidium - 17 years ago 2007-05-30 20:34:16
rubidium@openttd.org
(svn r9993) -Fix (r9992): smallish typos resulting in compile time errors.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/industry_cmd.cpp
Show inline comments
 
@@ -1478,13 +1478,13 @@ int32 CmdBuildIndustry(TileIndex tile, u
 
	 * Raw material industries are industries that do not accept cargo (at least for now)
 
	 * Exclude the lumber mill (only "raw" industry that can be built) */
 
	if (!_patches.build_rawmaterial_ind &&
 
			indspec->accepts_cargo[0] == CT_INVALID &&
 
			indspec->accepts_cargo[1] == CT_INVALID &&
 
			indspec->accepts_cargo[2] == CT_INVALID &&
 
			!(ind_spc->behaviour & INDUSTRYBEH_CUT_TREES) {
 
			!(indspec->behaviour & INDUSTRYBEH_CUT_TREES)) {
 
		return CMD_ERROR;
 
	}
 

	
 
	num = indspec->num_table;
 
	itt = indspec->table;
 

	
0 comments (0 inline, 0 general)