(svn r12443) -Add: OpenTTDs version to openttd.cfg, just so we do not need to keep to ask people for their version number because it's likely they give you the wrong answer anyway.
This commit is contained in:
@@ -235,9 +235,9 @@ static CommandCost RemoveRoad(TileIndex tile, uint32 flags, RoadBits pieces, Roa
|
||||
* @li on steep slopes
|
||||
* @li if the bits of the other roadtypes result in another foundation
|
||||
* @li if build on slopes is disabled */
|
||||
if (IsSteepSlope(tileh) || IsStraightRoad(other) &&
|
||||
(other & _invalid_tileh_slopes_road[0][tileh & SLOPE_ELEVATED]) != ROAD_NONE ||
|
||||
tileh != SLOPE_FLAT && !_patches.build_on_slopes) {
|
||||
if (IsSteepSlope(tileh) || (IsStraightRoad(other) &&
|
||||
(other & _invalid_tileh_slopes_road[0][tileh & SLOPE_ELEVATED]) != ROAD_NONE) ||
|
||||
(tileh != SLOPE_FLAT && !_patches.build_on_slopes)) {
|
||||
pieces |= MirrorRoadBits(pieces);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user