tunnelbridge_cmd.c
changeset 4022 9a31164f52c3
parent 4021 1e764a101ffc
child 4046 566de0b02064
--- a/tunnelbridge_cmd.c	Wed Jun 14 09:01:21 2006 +0000
+++ b/tunnelbridge_cmd.c	Wed Jun 14 09:52:50 2006 +0000
@@ -788,7 +788,6 @@
 		}
 		return _price.build_rail >> 1;
 	} else if (IsBridge(tile) && IsBridgeRamp(tile) && GetBridgeTransportType(tile) == TRANSPORT_RAIL) {
-		uint z = TilePixelHeight(tile) + TILE_HEIGHT;
 		const Vehicle* v;
 		TileIndexDiff delta;
 		int32 cost;
@@ -797,7 +796,7 @@
 
 		endtile = GetOtherBridgeEnd(tile);
 		// Make sure there's no vehicle on the bridge
-		v = FindVehicleBetween(tile, endtile, z);
+		v = FindVehicleBetween(tile, endtile, GetBridgeHeightRamp(tile));
 		if (v != NULL) {
 			return_cmd_error(VehicleInTheWayErrMsg(v));
 		}