aboutsummaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'init.lua')
-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
-