mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-17 21:25:40 +00:00
(svn r12014) -Fix: lighthouses and transmitters were never supposed to be build on a slope.
This commit is contained in:
parent
ab70871734
commit
9e7ad199b5
@ -385,7 +385,7 @@ static void PlaceProc_RockyArea(TileIndex tile)
|
|||||||
|
|
||||||
static void PlaceProc_LightHouse(TileIndex tile)
|
static void PlaceProc_LightHouse(TileIndex tile)
|
||||||
{
|
{
|
||||||
if (!IsTileType(tile, MP_CLEAR) || IsSteepSlope(GetTileSlope(tile, NULL)) || IsBridgeAbove(tile)) {
|
if (!IsTileType(tile, MP_CLEAR) || GetTileSlope(tile, NULL) != SLOPE_FLAT || IsBridgeAbove(tile)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -396,7 +396,7 @@ static void PlaceProc_LightHouse(TileIndex tile)
|
|||||||
|
|
||||||
static void PlaceProc_Transmitter(TileIndex tile)
|
static void PlaceProc_Transmitter(TileIndex tile)
|
||||||
{
|
{
|
||||||
if (!IsTileType(tile, MP_CLEAR) || IsSteepSlope(GetTileSlope(tile, NULL)) || IsBridgeAbove(tile)) {
|
if (!IsTileType(tile, MP_CLEAR) || GetTileSlope(tile, NULL) != SLOPE_FLAT || IsBridgeAbove(tile)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user