Update shared.lua

This commit is contained in:
Vazon 2014-06-11 01:19:03 -04:00
parent e20062a5c2
commit 4e7f6d19fb
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ minetest.register_node("more_chests:shared", {
local meta = minetest.env:get_meta(pos);
if meta:get_string("owner") == sender:get_player_name() then
meta:set_string("shared", fields.shared);
meta:set_string("formspec", formspec(fields.shared))
meta:set_string("formspec", shared(fields.shared))
end
end,
})