1
0
Fork 0

(svn r27306) -Fix (r27305): Confused tiles.

release/1.6
frosch 2015-06-20 12:55:17 +00:00
parent 0e378747db
commit ab69952f2a
1 changed files with 2 additions and 2 deletions

View File

@ -1318,10 +1318,10 @@ static bool CanFollowRoad(TileIndex tile, DiagDirection dir)
return target_rb != ROAD_NONE;
case MP_STATION:
return IsDriveThroughStopTile(tile);
return IsDriveThroughStopTile(target_tile);
case MP_TUNNELBRIDGE:
return GetTunnelBridgeTransportType(tile) == TRANSPORT_ROAD;
return GetTunnelBridgeTransportType(target_tile) == TRANSPORT_ROAD;
case MP_HOUSE:
case MP_INDUSTRY: