diff options
author | James Stevenson <everamzah@gmail.com> | 2016-07-13 19:39:32 -0400 |
---|---|---|
committer | James Stevenson <everamzah@gmail.com> | 2016-07-13 19:39:32 -0400 |
commit | c8f4d844c5c69b55b7013faf249300bf1ee07107 (patch) | |
tree | 207b6a2ad0df29e8a24124c11717bb4e088b5e7a | |
parent | 404f9c2339925ffcc7a5e4a300f318eb87d7b631 (diff) | |
download | mailbox-c8f4d844c5c69b55b7013faf249300bf1ee07107.tar.gz mailbox-c8f4d844c5c69b55b7013faf249300bf1ee07107.tar.bz2 mailbox-c8f4d844c5c69b55b7013faf249300bf1ee07107.zip |
Listring
-rw-r--r-- | init.lua | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -78,10 +78,15 @@ function mailbox.get_formspec(pos, owner, fs_type) if fs_type == 1 then return "size[8,9]"..xbg..default.get_hotbar_bg(0,5.25).. - "label[0,0;You received...]list[nodemeta:"..spos..";mailbox;0,0.75;8,4;]list[current_player;main;0,5.25;8,4;]" + "label[0,0;You received...]" .. + "list[nodemeta:"..spos..";mailbox;0,0.75;8,4;]" .. + "list[current_player;main;0,5.25;8,4;]" .. + "listring[]" else return "size[8,5]"..xbg..default.get_hotbar_bg(0,1.25).. - "label[0.5,0;Send your goods\nto "..owner.." :]list[nodemeta:"..spos..";drop;3.5,0;1,1;]list[current_player;main;0,1.25;8,4;]" + "label[0.5,0;Send your goods\nto "..owner.." :]" .. + "list[nodemeta:"..spos..";drop;3.5,0;1,1;]" .. + "list[current_player;main;0,1.25;8,4;]" .. + "listring[]" end end - |