From 3463f1a936fb5e2c7239087cd5418082a87dbf2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Hrab=C3=A1nek?= Date: Mon, 13 May 2024 15:26:02 +0200 Subject: [PATCH] Fix inconsistency in graph.lua for motor_vehicle_node (#4724) Co-authored-by: Christian <58629404+chrstnbwnkl@users.noreply.github.com> --- CHANGELOG.md | 1 + lua/graph.lua | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a18289b459..cd6bb143c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -51,6 +51,7 @@ * FIXED: Fixed roundoff issue in Tiles Row and Col methods [#4585](https://github.com/valhalla/valhalla/pull/4585) * FIXED: Fix for assigning attributes has_(highway, ferry, toll) if directions_type is none [#4465](https://github.com/valhalla/valhalla/issues/4465) * FIXED: Have the `valhalla_add_predicted_speeds` summary always be created from `mjolnir.tile_dir` [#4722](https://github.com/valhalla/valhalla/pull/4722) + * FIXED: Fix inconsistency in graph.lua for motor_vehicle_node [#4723](https://github.com/valhalla/valhalla/issues/4723) * **Enhancement** * UPDATED: French translations, thanks to @xlqian [#4159](https://github.com/valhalla/valhalla/pull/4159) * CHANGED: -j flag for multithreaded executables to override mjolnir.concurrency [#4168](https://github.com/valhalla/valhalla/pull/4168) diff --git a/lua/graph.lua b/lua/graph.lua index 1378d4e1df..886988c59b 100644 --- a/lua/graph.lua +++ b/lua/graph.lua @@ -435,7 +435,7 @@ motor_vehicle_node = { ["forestry"] = 0, ["destination"] = 1, ["customers"] = 1, -["official"] = 0, +["official"] = 1, ["public"] = 1, ["restricted"] = 1, ["allowed"] = 1,