mirror of
https://github.com/mt-mods/pipeworks.git
synced 2024-11-09 17:03:58 +01:00
Escape text for cycling form button
This commit is contained in:
parent
17cae3a650
commit
2838f0125f
@ -128,7 +128,7 @@ function fs_helpers.cycling_button(meta, base, meta_name, values)
|
|||||||
local new_value = (current_value + 1) % (#values)
|
local new_value = (current_value + 1) % (#values)
|
||||||
local text = values[current_value + 1]
|
local text = values[current_value + 1]
|
||||||
local field = "fs_helpers_cycling:"..new_value..":"..meta_name
|
local field = "fs_helpers_cycling:"..new_value..":"..meta_name
|
||||||
return base..";"..field..";"..text.."]"
|
return base..";"..field..";"..minetest.formspec_escape(text).."]"
|
||||||
end
|
end
|
||||||
|
|
||||||
---------
|
---------
|
||||||
|
Loading…
Reference in New Issue
Block a user