diff --git a/mods/HUD/craftingpack/crafting/init.lua b/mods/HUD/craftingpack/crafting/init.lua index 9a895918..931a3a8a 100644 --- a/mods/HUD/craftingpack/crafting/init.lua +++ b/mods/HUD/craftingpack/crafting/init.lua @@ -53,7 +53,7 @@ local function set_inventory(player) img = img .. player_armor[player_name] end end - local img_element = "image[1,0;3,4;"..img.."]" + local img_element = "image[0.6,0.2;3,4;"..img.."]" if show_armor and armor.textures[player_name] and armor.textures[player_name].preview then img = armor.textures[player_name].preview local s1 = img:find("character_preview") @@ -61,7 +61,7 @@ local function set_inventory(player) s1 = img:sub(s1+21) img = "crafting_player2d.png"..s1 end - img_element = "image[1.5,0;2,4;"..img.."]" + img_element = "image[1.1,0.2;2,4;"..img.."]" end local form = "size[9,8.75]".. @@ -69,6 +69,10 @@ local function set_inventory(player) mcl_vars.inventory_header.. img_element.. --armor + "image[0,0;1,1;crafting_slot_head.png]".. + "image[0,1;1,1;crafting_slot_torso.png]".. + "image[0,2;1,1;crafting_slot_legs.png]".. + "image[0,3;1,1;crafting_slot_feet.png]".. "list[detached:"..player_name.."_armor;armor;0,0;1,1;1]".. "list[detached:"..player_name.."_armor;armor;0,1;1,1;2]".. "list[detached:"..player_name.."_armor;armor;0,2;1,1;3]".. @@ -105,7 +109,7 @@ local function set_workbench(player) "list[current_player;main;0,4.5;9,3;9]".. "list[current_player;main;0,7.74;9,1;]".. "list[current_player;craft;1.75,0.5;3,3;]".. - "list[current_player;craftpreview;5.75,1.5;1,1;]".. + "list[current_player;craftpreview;6.1,1.5;1,1;]".. "image_button[8,0;1,1;craftguide_book.png;__mcl_craftguide;]".. "tooltip[__mcl_craftguide;Show crafting recipes]".. "listring[current_player;main]".. diff --git a/mods/HUD/craftingpack/crafting/textures/crafting_formspec_bg.png b/mods/HUD/craftingpack/crafting/textures/crafting_formspec_bg.png index 1eeab6f7..312a1863 100644 Binary files a/mods/HUD/craftingpack/crafting/textures/crafting_formspec_bg.png and b/mods/HUD/craftingpack/crafting/textures/crafting_formspec_bg.png differ diff --git a/mods/HUD/craftingpack/crafting/textures/crafting_inventory_workbench.png b/mods/HUD/craftingpack/crafting/textures/crafting_inventory_workbench.png index 82616ad6..0ee30184 100644 Binary files a/mods/HUD/craftingpack/crafting/textures/crafting_inventory_workbench.png and b/mods/HUD/craftingpack/crafting/textures/crafting_inventory_workbench.png differ diff --git a/mods/HUD/craftingpack/crafting/textures/crafting_slot_feet.png b/mods/HUD/craftingpack/crafting/textures/crafting_slot_feet.png new file mode 100644 index 00000000..200dddb1 Binary files /dev/null and b/mods/HUD/craftingpack/crafting/textures/crafting_slot_feet.png differ diff --git a/mods/HUD/craftingpack/crafting/textures/crafting_slot_head.png b/mods/HUD/craftingpack/crafting/textures/crafting_slot_head.png new file mode 100644 index 00000000..da03adc2 Binary files /dev/null and b/mods/HUD/craftingpack/crafting/textures/crafting_slot_head.png differ diff --git a/mods/HUD/craftingpack/crafting/textures/crafting_slot_legs.png b/mods/HUD/craftingpack/crafting/textures/crafting_slot_legs.png new file mode 100644 index 00000000..b5657e8e Binary files /dev/null and b/mods/HUD/craftingpack/crafting/textures/crafting_slot_legs.png differ diff --git a/mods/HUD/craftingpack/crafting/textures/crafting_slot_torso.png b/mods/HUD/craftingpack/crafting/textures/crafting_slot_torso.png new file mode 100644 index 00000000..3f5a319a Binary files /dev/null and b/mods/HUD/craftingpack/crafting/textures/crafting_slot_torso.png differ