added listring to shelf

This commit is contained in:
Sokomine 2020-10-02 01:46:32 +02:00
parent 43eabc2f27
commit 8cfaaed308
1 changed files with 4 additions and 1 deletions

View File

@ -264,10 +264,13 @@ minetest.register_node("cottages:shelf", {
local meta = minetest.get_meta(pos); local meta = minetest.get_meta(pos);
local spos = pos.x .. "," .. pos.y .. "," .. pos.z
meta:set_string("formspec", meta:set_string("formspec",
"size[8,8]".. "size[8,8]"..
"list[current_name;main;0,0;8,3;]".. "list[current_name;main;0,0;8,3;]"..
"list[current_player;main;0,4;8,4;]") "list[current_player;main;0,4;8,4;]"..
"listring[nodemeta:" .. spos .. ";main]" ..
"listring[current_player;main]")
meta:set_string("infotext", S("open storage shelf")) meta:set_string("infotext", S("open storage shelf"))
local inv = meta:get_inventory(); local inv = meta:get_inventory();
inv:set_size("main", 24); inv:set_size("main", 24);