Remove unneeded semicola from profiles.

Nothing fancy, does what it says.
This commit is contained in:
Daniel J. Hofmann
2015-09-02 12:23:26 +02:00
parent f6a90e9b42
commit bb1428eeb1
4 changed files with 19 additions and 19 deletions
+2 -2
View File
@@ -49,7 +49,7 @@ function node_function (node, result)
local traffic_signal = node:get_value_by_key("highway")
if traffic_signal and traffic_signal == "traffic_signals" then
result.traffic_lights = true;
result.traffic_lights = true
-- TODO: a way to set the penalty value
end
end
@@ -78,7 +78,7 @@ function way_function (way, result)
local speed_back = speed_forw
if highway == "river" then
local temp_speed = speed_forw;
local temp_speed = speed_forw
result.forward_mode = 3
result.backward_mode = 4
speed_forw = temp_speed*1.5