diff options
author | RealBadAngel <mk@realbadangel.pl> | 2013-07-03 23:32:41 +0200 |
---|---|---|
committer | RealBadAngel <mk@realbadangel.pl> | 2013-07-03 23:32:41 +0200 |
commit | 66a4a91224242ae5fb2a20c1e4647fdea2531c16 (patch) | |
tree | 19ee51d8bf58d0de06fb67317252d430e6948fd4 /unified_inventory/api.lua | |
parent | 44508110e83ac1cd01c3f58b1387568d8962c769 (diff) |
Fix to formspec background element syntax
Diffstat (limited to 'unified_inventory/api.lua')
-rw-r--r-- | unified_inventory/api.lua | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/unified_inventory/api.lua b/unified_inventory/api.lua index 02c08e9..5ff16fa 100644 --- a/unified_inventory/api.lua +++ b/unified_inventory/api.lua @@ -131,29 +131,29 @@ unified_inventory.get_formspec = function(player,page) formspec = formspec .. "list[current_player;main;0,4.5;8,4;]" -- backgrounds - formspec = formspec .. "background[-0.19,-0.2,;14.38,10.55;ui_form_bg.png]" + formspec = formspec .. "background[-0.19,-0.2;14.38,10.55;ui_form_bg.png]" if page=="craft" then - formspec = formspec .. "background[0.06,0.99,;7.92,7.52;ui_crafting_form.png]" + formspec = formspec .. "background[0.06,0.99;7.92,7.52;ui_crafting_form.png]" end if page=="craftguide" then - formspec = formspec .. "background[0.06,0.99,;7.92,7.52;ui_craftguide_form.png]" + formspec = formspec .. "background[0.06,0.99;7.92,7.52;ui_craftguide_form.png]" end if page=="misc" then - formspec = formspec .. "background[0.06,0.99,;7.92,7.52;ui_misc_form.png]" + formspec = formspec .. "background[0.06,0.99;7.92,7.52;ui_misc_form.png]" end if page=="bags" then - formspec = formspec .. "background[0.06,0.99,;7.92,7.52;ui_bags_main_form.png]" + formspec = formspec .. "background[0.06,0.99;7.92,7.52;ui_bags_main_form.png]" end for i=1,4 do if page=="bag"..i then local slots = player:get_inventory():get_stack(page, 1):get_definition().groups.bagslots if slots == 8 then - formspec = formspec .. "background[0.06,0.99,;7.92,7.52;ui_bags_sm_form.png]" + formspec = formspec .. "background[0.06,0.99;7.92,7.52;ui_bags_sm_form.png]" elseif slots == 16 then - formspec = formspec .. "background[0.06,0.99,;7.92,7.52;ui_bags_med_form.png]" + formspec = formspec .. "background[0.06,0.99;7.92,7.52;ui_bags_med_form.png]" elseif slots == 24 then - formspec = formspec .. "background[0.06,0.99,;7.92,7.52;ui_bags_lg_form.png]" + formspec = formspec .. "background[0.06,0.99;7.92,7.52;ui_bags_lg_form.png]" end end end |