From 01f80cf343918df3e9865cb272264ee3519154fa Mon Sep 17 00:00:00 2001 From: rubidium Date: Thu, 31 May 2007 18:12:35 +0000 Subject: [PATCH] (svn r10004) -Fix: trams can always intersect/have junctions on one way roads (because they only work for busses and lorries). --- src/road_cmd.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/road_cmd.cpp b/src/road_cmd.cpp index 6ab8605024..2c752a88ea 100644 --- a/src/road_cmd.cpp +++ b/src/road_cmd.cpp @@ -375,8 +375,8 @@ int32 CmdBuildRoad(TileIndex tile, uint32 flags, uint32 p1, uint32 p2) existing = GetRoadBits(tile, rt); RoadBits merged = existing | pieces; - bool crossing = (merged & ROAD_X) != ROAD_NONE && (merged & ROAD_Y) != ROAD_NONE; - if (GetDisallowedRoadDirections(tile) != DRD_NONE && crossing) { + bool crossing = (merged != ROAD_X && merged != ROAD_Y); + if (rt != ROADTYPE_TRAM && (GetDisallowedRoadDirections(tile) != DRD_NONE || toggle_drd != DRD_NONE) && crossing) { /* Junctions cannot be one-way */ return_cmd_error(STR_ERR_ONEWAY_ROADS_CAN_T_HAVE_JUNCTION); }