mirror of
https://github.com/Sokomine/cottages.git
synced 2024-11-16 07:20:30 +01:00
added listring to shelf
This commit is contained in:
parent
c60fa75abd
commit
8d2a028a86
|
@ -264,10 +264,13 @@ minetest.register_node("cottages:shelf", {
|
|||
|
||||
local meta = minetest.get_meta(pos);
|
||||
|
||||
local spos = pos.x .. "," .. pos.y .. "," .. pos.z
|
||||
meta:set_string("formspec",
|
||||
"size[8,8]"..
|
||||
"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"))
|
||||
local inv = meta:get_inventory();
|
||||
inv:set_size("main", 24);
|
||||
|
|
Loading…
Reference in New Issue
Block a user