This commit is contained in:
2026-06-26 02:16:36 +09:00
parent 00748914db
commit 052a4a8482
+3 -5
View File
@@ -256,6 +256,8 @@ end
-- GM-VP C 1 RECYCLER ENTITY -- GM-VP C 1 RECYCLER ENTITY
if data.raw['furnace'] and data.raw['furnace']['recycler'] then if data.raw['furnace'] and data.raw['furnace']['recycler'] then
data.raw['furnace']['recycler'].result_inventory_size = 5 data.raw['furnace']['recycler'].result_inventory_size = 5
data.raw['furnace']['recycler'].type = 'assembling-machine'
data.raw['assembling-machine']['recycler'].fixed_recipe = 'scrap-recycling'
end end
-- GM-VP C 1 SPACE_AGE ENTITY -- GM-VP C 1 SPACE_AGE ENTITY
@@ -461,7 +463,7 @@ end
-- GM-VP C 61 SPACE_AGE RECIPE -- GM-VP C 61 SPACE_AGE RECIPE
-- GM-VP H 1 QUALITY RECIPE -- GM-VP H 1 QUALITY RECIPE
-- GM-VP H 54 SPACE_AGE RECIPE -- GM-VP H 54 SPACE_AGE RECIPE
for rk, v in pairs(data.raw.recipe) do for _, v in pairs(data.raw.recipe) do
v.surface_conditions = nil v.surface_conditions = nil
v.maximum_productivity = nil v.maximum_productivity = nil
v.auto_recycle = false v.auto_recycle = false
@@ -475,10 +477,6 @@ for rk, v in pairs(data.raw.recipe) do
v.hidden = true v.hidden = true
v.hidden_in_factoriopedia = true v.hidden_in_factoriopedia = true
end end
if v.categories and v.categories == {'recycling'} and v.hidden then
data.raw.recipe[rk] = nil
end
end end
if data.raw.recipe['scrap-recycling'] then if data.raw.recipe['scrap-recycling'] then