Fix #7626: Allow building drive-through stops over one-way/blocked roads owned by towns (instead of crashing).

This commit is contained in:
Daniel Lee 2019-06-26 03:17:17 +01:00 committed by Niels Martin Hansen
parent 058dadf315
commit 2d9eb1c417

View File

@ -1005,7 +1005,7 @@ static CommandCost CheckFlatLandRoadStop(TileArea tile_area, DoCommandFlag flags
if (RoadTypeIsRoad(rt) && !HasPowerOnRoad(rt, road_rt)) return_cmd_error(STR_ERROR_NO_SUITABLE_ROAD);
if (GetDisallowedRoadDirections(cur_tile) != DRD_NONE) {
if (GetDisallowedRoadDirections(cur_tile) != DRD_NONE && road_owner != OWNER_TOWN) {
CommandCost ret = CheckOwnership(road_owner);
if (ret.Failed()) return ret;
}