1
0
Fork 0

(svn r9602) -Fix (r5833): Building rail on steep slopes ignored build_on_slopes patch setting.

release/0.6
peter1138 2007-04-12 06:16:46 +00:00
parent 69982b1f01
commit 8cdec9a2ab
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ uint GetRailFoundation(Slope tileh, TrackBits bits)
static uint32 CheckRailSlope(Slope tileh, TrackBits rail_bits, TrackBits existing, TileIndex tile)
{
if (IsSteepSlope(tileh)) {
if (existing == 0) {
if (_patches.build_on_slopes && existing == 0) {
TrackBits valid = TRACK_BIT_CROSS | (HASBIT(1 << SLOPE_STEEP_W | 1 << SLOPE_STEEP_E, tileh) ? TRACK_BIT_VERT : TRACK_BIT_HORZ);
if (valid & rail_bits) return _price.terraform;
}