Interpret pipes as line feeds

master
cheapie 2016-08-10 12:21:38 -05:00
parent e2e0fc7338
commit 46f670473b
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ digistuff.update_panel_formspec = function (pos,dispstr)
"image_button[3,6.5;1,1;digistuff_adwaita_emblem-default.png;enter;]"..
"field[6,5.75;2,1;channel;Channel;${channel}]"..
"button[8,5.5;1,1;savechan;Set]"
fs = fs:format(minetest.formspec_escape(dispstr))
fs = fs:format(minetest.formspec_escape(dispstr)):gsub("|","\n")
meta:set_string("formspec",fs)
end