From 168a7876a0106e630a191c52e077bd46f919ee3e Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 19 Feb 2007 13:45:13 +0000 Subject: (svn r8809) -Fix (r8715): accidentally removed a part of an expression. --- src/station_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp index 2ed72b561..e2cec8651 100644 --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -2146,7 +2146,7 @@ static uint32 VehicleEnter_Station(Vehicle *v, TileIndex tile, int x, int y) } } } else if (v->type == VEH_Road) { - if (v->u.road.state < RVSB_IN_ROAD_STOP && v->u.road.frame == 0) { + if (v->u.road.state < RVSB_IN_ROAD_STOP && !IsReversingRoadTrackdir((Trackdir)v->u.road.state) && v->u.road.frame == 0) { if (IsRoadStop(tile)) { /* Attempt to allocate a parking bay in a road stop */ RoadStop *rs = GetRoadStopByTile(tile, GetRoadStopType(tile)); -- cgit v1.2.3-54-g00ecf