Crafting: Fix arrow image height

This commit is contained in:
Wuzzy 2024-04-14 19:08:17 +02:00
parent f81e716218
commit 460940a7c8

View File

@ -417,7 +417,7 @@ function crafting.get_formspec(name)
if input_items >= 1 and input_items <= crafting.MAX_INPUTS then if input_items >= 1 and input_items <= crafting.MAX_INPUTS then
-- Arrow(s) pointing from input to output (a visual helper) -- Arrow(s) pointing from input to output (a visual helper)
form = form .. "image[8.35,0;0.5,4;ui_crafting_arrow_"..input_items..".png]" form = form .. "image[8.35,0;0.5,4.45;ui_crafting_arrow_"..input_items..".png]"
end end
-- Show crafting buttons only if something is selected -- Show crafting buttons only if something is selected