diff options
author | rubidium <rubidium@openttd.org> | 2007-05-26 20:30:40 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-05-26 20:30:40 +0000 |
commit | a88d005c766e6847abe6712cab3b2bd0449c6296 (patch) | |
tree | 211b1298c89e183bd4fe2fd10001073dda560b5e | |
parent | c7897d4422e35748308a977f966dd7159975945b (diff) | |
download | openttd-a88d005c766e6847abe6712cab3b2bd0449c6296.tar.xz |
(svn r9940) -Fix [FS#805]: upgrading a bridge removed roadtypes.
-rw-r--r-- | src/tunnelbridge_cmd.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tunnelbridge_cmd.cpp b/src/tunnelbridge_cmd.cpp index 9f22ce156..8c2ee05cd 100644 --- a/src/tunnelbridge_cmd.cpp +++ b/src/tunnelbridge_cmd.cpp @@ -304,6 +304,9 @@ int32 CmdBuildBridge(TileIndex end_tile, uint32 flags, uint32 p1, uint32 p2) cost = (bridge_len + 1) * _price.clear_bridge; // The cost of clearing the current bridge. replace_bridge = true; replaced_bridge_type = GetBridgeType(tile_start); + + /* Do not remove road types when upgrading a bridge */ + roadtypes |= GetRoadTypes(tile_start); } else { /* Build a new bridge. */ |