If you don't have time to wait, here's the solution:
- Open the TIMSABA archive
- Navigate to: TIMSABA /prototypes-final-fix/duplicate-items-and-fluids/
- Open the angels file
- Find the line: if settings.startup[setting_early_sintering_oven].value == false then
- In the block: for _, BUILD in pairs(sintering_ovens) do, add the line data_assembling[BUILD] = nil before end
You'll end up with a code snippet like this:
local sintering_ovens =
{
sintering_oven_1,
sintering_oven_2,
sintering_oven_3
}
for _, BUILD in pairs(sintering_ovens) do
data_item[BUILD] = nil
data_recipe[BUILD] = nil
data_recipe[BUILD .. _recycling] = nil
if mods [panglia_mods] then
data_recipe[item_ .. BUILD .. _panglia_crushing] = nil
end
data_assembling[BUILD] = nil -- This line is needed for everything to work.
end