mirror of
https://github.com/minetest-mods/craftguide.git
synced 2025-01-13 13:20:24 +01:00
2×2 for shapeless recipe w/ <= 4 items
This commit is contained in:
parent
9df355b899
commit
eb7292da7a
3
init.lua
3
init.lua
@ -423,7 +423,8 @@ local function get_recipe_fs(data, iY)
|
|||||||
cooktime, width = width, 1
|
cooktime, width = width, 1
|
||||||
elseif width == 0 then
|
elseif width == 0 then
|
||||||
shapeless = true
|
shapeless = true
|
||||||
width = min(3, #recipe.items)
|
local n = #recipe.items
|
||||||
|
width = n <= 4 and 2 or min(3, n)
|
||||||
end
|
end
|
||||||
|
|
||||||
local rows = ceil(maxn(recipe.items) / width)
|
local rows = ceil(maxn(recipe.items) / width)
|
||||||
|
Loading…
Reference in New Issue
Block a user