summaryrefslogtreecommitdiff
path: root/src/station.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-08-25 20:05:58 +0000
committerrubidium <rubidium@openttd.org>2007-08-25 20:05:58 +0000
commitc6152e0cd48fb3f36fea6d95bf6296b284f63f57 (patch)
tree643d80a30653b6f019e94cce7d9cb1574190e253 /src/station.cpp
parent5d245dc861584ac9e5789a7e7c54f21e7b96d12f (diff)
downloadopenttd-c6152e0cd48fb3f36fea6d95bf6296b284f63f57.tar.xz
(svn r10978) -Fix (r10974): only the first road stop (with correct roadtype) was considered when distributing vehicles.
Diffstat (limited to 'src/station.cpp')
-rw-r--r--src/station.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/station.cpp b/src/station.cpp
index 6f0c12ce4..78bdf2121 100644
--- a/src/station.cpp
+++ b/src/station.cpp
@@ -515,7 +515,7 @@ RoadStop *RoadStop::GetNextRoadStop(const Vehicle *v) const
{
for (RoadStop *rs = this->next; rs != NULL; rs = rs->next) {
/* The vehicle cannot go to this roadstop (different roadtype) */
- if ((GetRoadTypes(rs->xy) & v->u.road.compatible_roadtypes) != ROADTYPES_NONE) continue;
+ if ((GetRoadTypes(rs->xy) & v->u.road.compatible_roadtypes) == ROADTYPES_NONE) continue;
/* The vehicle is articulated and can therefor not go the a standard road stop */
if (IsStandardRoadStopTile(rs->xy) && RoadVehHasArticPart(v)) continue;