From e4fc633f6837f5f97551412a46ccd0b85de9d6f6 Mon Sep 17 00:00:00 2001 From: Emil Tin Date: Fri, 21 Dec 2012 13:10:42 +0100 Subject: [PATCH] bicycles can pass cycle_barriers --- features/bicycle/barrier.feature | 1 + profiles/bicycle.lua | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/features/bicycle/barrier.feature b/features/bicycle/barrier.feature index 5aa958824..ed387c13f 100644 --- a/features/bicycle/barrier.feature +++ b/features/bicycle/barrier.feature @@ -10,6 +10,7 @@ Feature: Barriers | | x | | bollard | x | | gate | x | + | cycle_barrier | x | | cattle_grid | x | | border_control | x | | toll_booth | x | diff --git a/profiles/bicycle.lua b/profiles/bicycle.lua index 48cab082c..c27771b14 100644 --- a/profiles/bicycle.lua +++ b/profiles/bicycle.lua @@ -1,5 +1,5 @@ -- Begin of globals -barrier_whitelist = { [""] = true, ["bollard"] = true, ["entrance"] = true, ["cattle_grid"] = true, ["border_control"] = true, ["toll_booth"] = true, ["sally_port"] = true, ["gate"] = true} +barrier_whitelist = { [""] = true, ["cycle_barrier"] = true, ["bollard"] = true, ["entrance"] = true, ["cattle_grid"] = true, ["border_control"] = true, ["toll_booth"] = true, ["sally_port"] = true, ["gate"] = true} access_tag_whitelist = { ["yes"] = true, ["permissive"] = true, ["designated"] = true } access_tag_blacklist = { ["no"] = true, ["private"] = true, ["agricultural"] = true, ["forestery"] = true } access_tag_restricted = { ["destination"] = true, ["delivery"] = true }