Craftguide: 2×2 for shapeless recipe w/ <= 4 items

This commit is contained in:
Wuzzy 2019-03-12 23:05:03 +01:00
parent 9fc834c8db
commit e24a698bae
1 changed files with 5 additions and 1 deletions

View File

@ -471,7 +471,11 @@ local function get_recipe_fs(data, iY)
cooktime, width = width, 1
elseif width == 0 then
shapeless = true
width = min(3, #recipe.items)
if #recipe.items <= 4 then
width = 2
else
width = min(3, #recipe.items)
end
end
local rows = ceil(maxn(recipe.items) / width)