diff --git a/src/object_cmd.cpp b/src/object_cmd.cpp index fc891df545..a8e8e5e19e 100644 --- a/src/object_cmd.cpp +++ b/src/object_cmd.cpp @@ -134,7 +134,7 @@ CommandCost CmdBuildObject(TileIndex tile, DoCommandFlag flags, uint32 p1, uint3 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 {