summaryrefslogtreecommitdiff
path: root/src/roadveh_cmd.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-06-19 13:04:41 +0000
committerrubidium <rubidium@openttd.org>2008-06-19 13:04:41 +0000
commitbd31dda2fbcccf2eb05080543c1b6d2f472702f2 (patch)
tree9bcb942840459cecfac25119f21911885892c2fd /src/roadveh_cmd.cpp
parent525c964f53c51192cde1fca88a2446b59ee68520 (diff)
downloadopenttd-bd31dda2fbcccf2eb05080543c1b6d2f472702f2.tar.xz
(svn r13581) -Fix [FS#2040]: RVs continueing onto next DT station when they are build adjacent to them.
Diffstat (limited to 'src/roadveh_cmd.cpp')
-rw-r--r--src/roadveh_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/roadveh_cmd.cpp b/src/roadveh_cmd.cpp
index e7e17b2e7..8280b2570 100644
--- a/src/roadveh_cmd.cpp
+++ b/src/roadveh_cmd.cpp
@@ -1732,7 +1732,7 @@ again:
RoadStopType type = IsCargoInClass(v->cargo_type, CC_PASSENGERS) ? ROADSTOP_BUS : ROADSTOP_TRUCK;
/* Check if next inline bay is free */
- if (IsDriveThroughStopTile(next_tile) && (GetRoadStopType(next_tile) == type)) {
+ if (IsDriveThroughStopTile(next_tile) && (GetRoadStopType(next_tile) == type) && GetStationIndex(v->tile) == GetStationIndex(next_tile)) {
RoadStop *rs_n = GetRoadStopByTile(next_tile, type);
if (rs_n->IsFreeBay(HasBit(v->u.road.state, RVS_USING_SECOND_BAY))) {