From 9cc710ad22de823ec24f63c8123768aba2103e16 Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 24 Nov 2009 14:20:39 +0000 Subject: [PATCH] (svn r18271) -Fix [FS#3315]: road vehicles wouldn't reserve a road stop in tunnels/on bridges so when they leave wormhole they're still focussed on the main road stop causing unneededly long queues --- src/tunnelbridge_cmd.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tunnelbridge_cmd.cpp b/src/tunnelbridge_cmd.cpp index 3602805e0e..637f78260d 100644 --- a/src/tunnelbridge_cmd.cpp +++ b/src/tunnelbridge_cmd.cpp @@ -1411,6 +1411,7 @@ static VehicleEnterTileStatus VehicleEnter_TunnelBridge(Vehicle *v, TileIndex ti rv->state = _road_exit_tunnel_state[dir]; rv->frame = _road_exit_tunnel_frame[dir]; rv->vehstatus &= ~VS_HIDDEN; + rv->FindRoadStopSlot(); return VETSB_ENTERED_WORMHOLE; } }