File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ This page describes changes made in these projects: [SomeoneElse-style](https://
1010(raster, vector) Show noncommercial art galleries with a unique museum-like icon.
1111(raster, vector) Handle more semicolon values. Apart from some special cases, shops with semicolon values just use the first part.
1212(raster) Show access=no and access=destination on roads shown as unpaved (no change needed to vector - that was already OK)
13+ (raster, vector) Change squiggly brackets at the start of appended bridge refs to round brackets.
1314
1415## 03/07/2025
1516(raster, vector) Show ` wheelchair ` flash on ` amenity=fast_food ` with ` cuisine=kebab ` , ` cuisine=mexican ` and synonyms.
Original file line number Diff line number Diff line change @@ -6539,9 +6539,9 @@ function consolidate_lua_03_t( passedt )
65396539 ( passedt.waterway ~= "" )))) then
65406540 if (( passedt.name == nil ) or
65416541 ( passedt.name == "" )) then
6542- passedt.name = "{ " .. passedt.bridge_ref .. ")"
6542+ passedt.name = "( " .. passedt.bridge_ref .. ")"
65436543 else
6544- passedt.name = passedt.name .. " { " .. passedt.bridge_ref .. ")"
6544+ passedt.name = passedt.name .. " ( " .. passedt.bridge_ref .. ")"
65456545 end
65466546
65476547 passedt.bridge_ref = nil
You can’t perform that action at this time.
0 commit comments