Changeset - r15945:f572606fc341
[Not reviewed]
master
0 1 0
rubidium - 14 years ago 2010-08-27 22:51:16
rubidium@openttd.org
(svn r20643) -Fix (r20641): != != ==
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/object_cmd.cpp
Show inline comments
 
@@ -134,7 +134,7 @@ CommandCost CmdBuildObject(TileIndex til
 
	int size_y = GB(spec->size, 4, 4);
 
	TileArea ta(tile, size_x, size_y);
 

	
 
	if (type != OBJECT_OWNED_LAND) {
 
	if (type == OBJECT_OWNED_LAND) {
 
		/* Owned land is special as it can be placed on any slope. */
 
		cost.AddCost(DoCommand(tile, 0, 0, flags, CMD_LANDSCAPE_CLEAR));
 
	} else {
0 comments (0 inline, 0 general)