aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Stevenson <everamzah@gmail.com>2016-07-13 19:39:32 -0400
committerJames Stevenson <everamzah@gmail.com>2016-07-13 19:39:32 -0400
commitc8f4d844c5c69b55b7013faf249300bf1ee07107 (patch)
tree207b6a2ad0df29e8a24124c11717bb4e088b5e7a
parent404f9c2339925ffcc7a5e4a300f318eb87d7b631 (diff)
downloadmailbox-c8f4d844c5c69b55b7013faf249300bf1ee07107.tar.gz
mailbox-c8f4d844c5c69b55b7013faf249300bf1ee07107.tar.bz2
mailbox-c8f4d844c5c69b55b7013faf249300bf1ee07107.zip
Listring
-rw-r--r--init.lua11
1 files changed, 8 insertions, 3 deletions
diff --git a/init.lua b/init.lua
index 2310a98..29b7171 100644
--- a/init.lua
+++ b/init.lua
@@ -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
-