Revert "Handle small roundabouts, fixes #516."

This reverts commit 7641b12b08.

Conflicts:
	profiles/bicycle.lua
	profiles/car.lua
This commit is contained in:
Daniel J. Hofmann
2016-06-02 15:03:28 +02:00
parent 27c4e8ddd0
commit ad70759f91
4 changed files with 8 additions and 9 deletions
+2 -2
View File
@@ -103,11 +103,11 @@ function way_function (way, result)
-- nothing to do
elseif oneway == "-1" then
result.forward_mode = mode.inaccessible
elseif oneway == "yes" or oneway == "1" or oneway == "true" or junction == "roundabout" or highway == "mini_roundabout" then
elseif oneway == "yes" or oneway == "1" or oneway == "true" or junction == "roundabout" then
result.backward_mode = mode.inaccessible
end
if junction == 'roundabout' or highway == 'mini_roundabout' then
if junction == 'roundabout' then
result.roundabout = true
end
end