Merge pull request #264 from cheapie/master

Escape command block commands for formspec
This commit is contained in:
Florian Euchner 2016-04-21 19:26:28 +02:00
commit c4f0c5c169
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ minetest.register_chatcommand("hp", {
})
local function initialize_data(meta)
local commands = meta:get_string("commands")
local commands = minetest.formspec_escape(meta:get_string("commands"))
meta:set_string("formspec",
"invsize[9,5;]" ..
"textarea[0.5,0.5;8.5,4;commands;Commands;"..commands.."]" ..