This commit is contained in:
2026-06-26 02:23:35 +09:00
parent 052a4a8482
commit 120d5fa26b
+6 -3
View File
@@ -255,9 +255,12 @@ 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' local asm = table.deepcopy(data.raw['furnace']['recycler'])
data.raw['assembling-machine']['recycler'].fixed_recipe = 'scrap-recycling' asm.type = 'assembling-machine'
asm.fixed_recipe = 'scrap-recycling'
data.extend({asm})
data.raw['furnace']['recycler'] = nil
end end
-- GM-VP C 1 SPACE_AGE ENTITY -- GM-VP C 1 SPACE_AGE ENTITY