diff options
author | tenplus1 <kinsellaja@yahoo.com> | 2015-01-20 09:12:53 +0000 |
---|---|---|
committer | tenplus1 <kinsellaja@yahoo.com> | 2015-01-20 09:12:53 +0000 |
commit | 852b60f135fab78f1ec1b98a11419ca49eda7698 (patch) | |
tree | 5a55ffb3a63ea575481d6763baac6269bb0fe889 /init.lua | |
parent | 2b3e048ff41e678519ffb00afd5a7a96f7e3ba2e (diff) |
Updated to work with 0.4.11 dev
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -547,6 +547,20 @@ minetest.register_craft({ } }) +local function get_locked_chest_formspec(pos) + local spos = pos.x .. "," .. pos.y .. "," ..pos.z + local formspec = + "size[8,9]".. + default.gui_bg.. + default.gui_bg_img.. + default.gui_slots.. + "list[nodemeta:".. spos .. ";main;0,0.3;8,4;]".. + "list[current_player;main;0,4.85;8,1;]".. + "list[current_player;main;0,6.08;8,3;8]".. + default.get_hotbar_bg(0,4.85) + return formspec +end + -- Protected Chest minetest.register_node("protector:chest", { description = "Protected Chest", @@ -595,7 +609,7 @@ minetest.register_node("protector:chest", { minetest.show_formspec( clicker:get_player_name(), "default:chest_locked", - default.get_locked_chest_formspec(pos) + get_locked_chest_formspec(pos) ) end end, |