Minor style

This commit is contained in:
Jean-Patrick Guerrero 2020-07-27 03:47:33 +02:00
parent f83bc9cccf
commit d93f5b0cf2

@ -1506,15 +1506,15 @@ core.register_craft = function(def)
end end
for i = 1, #output do for i = 1, #output do
local name = output[i] local item = output[i]
rcp_num[name] = (rcp_num[name] or 0) + 1 rcp_num[item] = (rcp_num[item] or 0) + 1
if def.replacements then if def.replacements then
if def.type == "fuel" then if def.type == "fuel" then
replacements.fuel[name] = def.replacements replacements.fuel[item] = def.replacements
else else
replacements[name] = replacements[name] or {} replacements[item] = replacements[item] or {}
replacements[name][rcp_num[name]] = def.replacements replacements[item][rcp_num[item]] = def.replacements
end end
end end
end end