mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-22 22:02:32 +01:00
Fix to formspec background element syntax
This commit is contained in:
parent
44508110e8
commit
66a4a91224
@ -131,29 +131,29 @@ unified_inventory.get_formspec = function(player,page)
|
|||||||
formspec = formspec .. "list[current_player;main;0,4.5;8,4;]"
|
formspec = formspec .. "list[current_player;main;0,4.5;8,4;]"
|
||||||
|
|
||||||
-- backgrounds
|
-- 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
|
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
|
end
|
||||||
if page=="craftguide" then
|
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
|
end
|
||||||
if page=="misc" then
|
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
|
end
|
||||||
if page=="bags" then
|
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
|
end
|
||||||
|
|
||||||
for i=1,4 do
|
for i=1,4 do
|
||||||
if page=="bag"..i then
|
if page=="bag"..i then
|
||||||
local slots = player:get_inventory():get_stack(page, 1):get_definition().groups.bagslots
|
local slots = player:get_inventory():get_stack(page, 1):get_definition().groups.bagslots
|
||||||
if slots == 8 then
|
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
|
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
|
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
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user