This repository has been archived on 2020-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
minetest-mod-sparktech/sparkcompat/lua/mtg-default:chest.lua

9 lines
369 B
Lua

if default and default.chest then
function default.chest.get_chest_formspec(pos)
local position = pos.x .. "," .. pos.y .. "," .. pos.z
local formspec = "list[nodemeta:" .. position .. ";main;0,0;8,4;]" -- not sure what insane stuff chest does, but context;main can't be used here
formspec = sparktech.add_inventory(10,5.4, formspec)
return formspec
end
end