# HG changeset patch # User smatz # Date 1201983320 0 # Node ID 2a14ce1a7a43bdc1d9048871b96fa7e17c7604ba # Parent ba4c15fe147b8e284d3b7130d7bc995e7348a538 (svn r12043) -Fix [FS#1736]: allow building transmitters and lighthouses on tree tiles diff -r ba4c15fe147b -r 2a14ce1a7a43 src/terraform_gui.cpp --- a/src/terraform_gui.cpp Sat Feb 02 09:28:43 2008 +0000 +++ b/src/terraform_gui.cpp Sat Feb 02 20:15:20 2008 +0000 @@ -388,7 +388,8 @@ static void PlaceProc_LightHouse(TileIndex tile) { - if (!IsTileType(tile, MP_CLEAR) || GetTileSlope(tile, NULL) != SLOPE_FLAT || IsBridgeAbove(tile)) { + /* not flat || not(trees || clear without bridge above) */ + if (GetTileSlope(tile, NULL) != SLOPE_FLAT || !(IsTileType(tile, MP_TREES) || (IsTileType(tile, MP_CLEAR) && !IsBridgeAbove(tile)))) { return; } @@ -399,7 +400,8 @@ static void PlaceProc_Transmitter(TileIndex tile) { - if (!IsTileType(tile, MP_CLEAR) || GetTileSlope(tile, NULL) != SLOPE_FLAT || IsBridgeAbove(tile)) { + /* not flat || not(trees || clear without bridge above) */ + if (GetTileSlope(tile, NULL) != SLOPE_FLAT || !(IsTileType(tile, MP_TREES) || (IsTileType(tile, MP_CLEAR) && !IsBridgeAbove(tile)))) { return; }