We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 857a49e commit fbef701Copy full SHA for fbef701
builtin/mainmenu.lua
@@ -210,12 +210,12 @@ end
210
function menu.render_texture_pack_list(list)
211
local retval = ""
212
213
- for i,v in ipairs(list) do
+ for i, v in ipairs(list) do
214
if retval ~= "" then
215
retval = retval ..","
216
end
217
218
- retval = retval .. v
+ retval = retval .. engine.formspec_escape(v)
219
220
221
return retval
0 commit comments