After the update, some recipes were deleted and they could not be created, for example a resistor.
This command help for reload techtree for unlock recipes.
/c tech = {} for name,technology in pairs(game.player.force.technologies) do if technology.researched == true then table.insert( tech, technology.name ) end end game.player.force.reset() for _, tech_name in pairs(tech) do for name,technology in pairs(game.player.force.technologies) do if (technology.name == tech_name) then technology.researched = true end end end