Fix protected chest rightclick error on some builds

This commit is contained in:
TenPlus1 2016-02-21 21:03:08 +00:00
parent f234ae1b4a
commit 511906aa01
1 changed files with 5 additions and 1 deletions

View File

@ -536,6 +536,11 @@ minetest.register_node("protector:chest", {
end
local meta = minetest.get_meta(pos)
if not meta then
return
end
local spos = pos.x .. "," .. pos.y .. "," ..pos.z
local formspec = "size[8,9]"
.. default.gui_bg
@ -550,7 +555,6 @@ minetest.register_node("protector:chest", {
.. "list[current_player;main;0,6.08;8,3;8]"
.. "listring[nodemeta:" .. spos .. ";main]"
.. "listring[current_player;main]"
.. default.get_hotbar_bg(0,5)
minetest.show_formspec(
clicker:get_player_name(),