# HG changeset patch # User rubidium # Date 1171892713 0 # Node ID 0540ac4a12e632719f869c2655e33fd571d84600 # Parent cc6d57844f35fdaa0735c8b9056cf740e772a2b0 (svn r8809) -Fix (r8715): accidentally removed a part of an expression. diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -2146,7 +2146,7 @@ } } } 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));