This commit is contained in:
Brevven 2025-06-14 22:52:55 -07:00
parent 1559713296
commit cc888b2e17

View file

@ -684,7 +684,7 @@ function util.se_matter(params)
{"se-astronomic-science-pack-4", 1}, {"se-astronomic-science-pack-4", 1},
{"se-energy-science-pack-4", 1}, {"se-energy-science-pack-4", 1},
{"se-material-science-pack-4", 1}, {"se-material-science-pack-4", 1},
{"matter-tech-card", 1}, {"kr-matter-tech-card", 1},
{"se-deep-space-science-pack-1", 1}, {"se-deep-space-science-pack-1", 1},
} }
@ -1896,6 +1896,7 @@ function util.redo_recycling()
-- Find all recycling recipes that result in armor and make sure not to output more than 1 -- Find all recycling recipes that result in armor and make sure not to output more than 1
for _, recipe in pairs(data.raw.recipe) do for _, recipe in pairs(data.raw.recipe) do
if recipe.name:find("recycling") then if recipe.name:find("recycling") then
if recipe.results then
for _, product in pairs(recipe.results) do for _, product in pairs(recipe.results) do
if data.raw.armor[product.name] then if data.raw.armor[product.name] then
if product.amount then if product.amount then
@ -1909,6 +1910,7 @@ function util.redo_recycling()
end end
end end
end end
end
end end
-- Preps the recipe to have recycling recalculated. Expects the recipe exists. -- Preps the recipe to have recycling recalculated. Expects the recipe exists.