forked from minetest-mods/craftguide
2×2 for shapeless recipe w/ <= 4 items
This commit is contained in:
committed by
Jean-Patrick Guerrero
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
|
||||
elseif width == 0 then
|
||||
shapeless = true
|
||||
width = min(3, #recipe.items)
|
||||
local n = #recipe.items
|
||||
width = n <= 4 and 2 or min(3, n)
|
||||
end
|
||||
|
||||
local rows = ceil(maxn(recipe.items) / width)
|
||||
|
Reference in New Issue
Block a user