From 3ff5b879d09e1ef5be16dfca23b83bb8490b94be Mon Sep 17 00:00:00 2001 From: celestar Date: Tue, 4 Apr 2006 11:45:54 +0000 Subject: [PATCH] (svn r4273) -Fix: Removed a problem where trains would stop in the middle of a platform if there were both elrails and convrails along the platform --- station_map.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/station_map.h b/station_map.h index c60a69b390..b91b00109f 100644 --- a/station_map.h +++ b/station_map.h @@ -81,7 +81,7 @@ static inline bool IsCompatibleTrainStationTile(TileIndex t1, TileIndex t2) assert(IsRailwayStationTile(t2)); return IsRailwayStationTile(t1) && - GB(_m[t1].m3, 0, 4) == GB(_m[t2].m3, 0, 4) && // same rail type? + IsCompatibleRail(GetRailType(t1), GetRailType(t2)) && GB(_m[t1].m5, 0, 1) == GB(_m[t2].m5, 0, 1); // same direction? }