This command reload tech tree and recipes, but its Disable in game Achievements.
/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