From 911a46c821692b7f57aad263873f7b65abd6f363 Mon Sep 17 00:00:00 2001 From: JabSysEmb Date: Fri, 23 May 2025 20:53:44 +0300 Subject: [PATCH] fix misassociation among office and highway tags --- process.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process.lua b/process.lua index 9673d18..896b11a 100644 --- a/process.lua +++ b/process.lua @@ -943,7 +943,7 @@ function process_pois(polygon) local leisure = valueAcceptedOrNil(poi_leisure_values, Find("leisure")) local emergency = valueAcceptedOrNil(poi_emergency_values, Find("emergency")) local highway = valueAcceptedOrNil(poi_highway_values, Find("highway")) - local office = valueAcceptedOrNil(poi_highway_values, Find("office")) + local office = valueAcceptedOrNil(poi_office_values, Find("office")) if amenity == nil and shop == nil and tourism == nil and historic == nil and leisure == nil and emergency == nil and highway == nil and office == nil then return false end