This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local list = {} | |
| local recipes_by_tech = {} | |
| for _,tech in pairs(data.raw["technology"]) do | |
| if tech.enabled then | |
| for _,effect in pairs(tech.effects) do | |
| if effect.type == "unlock-recipe" then | |
| table.insert(recipes_by_tech, effect.recipe, effect.recipe) | |
| end |