diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2016-08-30 14:15:49 -0400 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2016-08-30 14:15:49 -0400 |
commit | 10466bea04f77261de0d9b77df4f7e4efbe88a19 (patch) | |
tree | 340f06ab1b7c47d156218e550ea5e9b25d36f945 /homedecor/handlers | |
parent | 7a63e51fb5ac8c2db1bda58a2ba7e8532356fc8e (diff) | |
download | dreambuilder_modpack-10466bea04f77261de0d9b77df4f7e4efbe88a19.tar dreambuilder_modpack-10466bea04f77261de0d9b77df4f7e4efbe88a19.tar.gz dreambuilder_modpack-10466bea04f77261de0d9b77df4f7e4efbe88a19.tar.bz2 dreambuilder_modpack-10466bea04f77261de0d9b77df4f7e4efbe88a19.tar.xz dreambuilder_modpack-10466bea04f77261de0d9b77df4f7e4efbe88a19.zip |
updated homedecor, moreblocks, pipeworks, and travelnet
Diffstat (limited to 'homedecor/handlers')
-rw-r--r-- | homedecor/handlers/inventory.lua | 25 |
1 files changed, 17 insertions, 8 deletions
diff --git a/homedecor/handlers/inventory.lua b/homedecor/handlers/inventory.lua index 44b6945..dc4b740 100644 --- a/homedecor/handlers/inventory.lua +++ b/homedecor/handlers/inventory.lua @@ -8,38 +8,47 @@ end local background = default.gui_bg .. default.gui_bg_img .. default.gui_slots local default_inventory_formspecs = { ["4"]="size[8,6]".. background .. - "list[context;main;2,0;4,1;]".. - "list[current_player;main;0,2;8,4;]", + "list[context;main;2,0;4,1;]" .. + "list[current_player;main;0,2;8,4;]" .. + "listring[]", ["6"]="size[8,6]".. background .. "list[context;main;1,0;6,1;]".. - "list[current_player;main;0,2;8,4;]", + "list[current_player;main;0,2;8,4;]" .. + "listring[]", ["8"]="size[8,6]".. background .. "list[context;main;0,0;8,1;]".. - "list[current_player;main;0,2;8,4;]", + "list[current_player;main;0,2;8,4;]" .. + "listring[]", ["12"]="size[8,7]".. background .. "list[context;main;1,0;6,2;]".. - "list[current_player;main;0,3;8,4;]", + "list[current_player;main;0,3;8,4;]" .. + "listring[]", ["16"]="size[8,7]".. background .. "list[context;main;0,0;8,2;]".. - "list[current_player;main;0,3;8,4;]", + "list[current_player;main;0,3;8,4;]" .. + "listring[]", ["24"]="size[8,8]".. background .. "list[context;main;0,0;8,3;]".. - "list[current_player;main;0,4;8,4;]", + "list[current_player;main;0,4;8,4;]" .. + "listring[]", ["32"]="size[8,9]".. background .. "list[context;main;0,0.3;8,4;]".. "list[current_player;main;0,4.85;8,1;]".. "list[current_player;main;0,6.08;8,3;8]".. + "listring[context;main]" .. + "listring[current_player;main]" .. default.get_hotbar_bg(0,4.85), ["50"]="size[10,10]".. background .. "list[context;main;0,0;10,5;]".. - "list[current_player;main;1,6;8,4;]", + "list[current_player;main;1,6;8,4;]" .. + "listring[]", } local function get_formspec_by_size(size) |