Wed, 02 Jul 2025 14:29:06 +0300
Added tag fusion-lab_1.2.3 for changeset 101603241531
-- make sure it can accept all science packs a biolab can, even if extra science packs are added -- and it turns out some mods also add new science packs to the regular lab and not the biolab, -- so we need to add inputs from both of them local inputs = {} for _, lab in pairs{data.raw.lab.lab, data.raw.lab.biolab} do for _, lab_input in pairs(lab.inputs) do inputs[lab_input] = 1 end end data.raw.lab["fusion-lab"].inputs = {} for lab_input, _ in pairs(inputs) do table.insert(data.raw.lab["fusion-lab"].inputs, lab_input) end