Small correction

This commit is contained in:
Jean-Patrick Guerrero 2020-07-27 03:39:12 +02:00
parent f88e0412fc
commit f83bc9cccf
1 changed files with 4 additions and 2 deletions

View File

@ -710,9 +710,11 @@ local function cache_recipes(item)
end
local shift = 0
local size_rpl = maxn(replacements[item])
local size_rcp = #_recipes
if maxn(replacements[item]) > #_recipes then
shift = -1
if size_rpl > size_rcp then
shift = size_rcp - size_rpl
end
for k, v in pairs(replacements[item]) do