As of the date of this reply, it is not a good idea to implement the above... at least not without more context.IsaacOscar wrote: ↑Wed Dec 18, 2024 11:08 am I agree, however you can just put:In your own mods data-final-fixes (data, data-updates, or anywhere else after you've added or changed recipes)Code: Select all
if mods["quality"] then require("__quality__.data-updates") end
Generally calling it, results in the recycling recipe for nutrients to be changed to biter eggs.
I switched to this to re-generate only specific recipes:
Code: Select all
local recipe = data.raw.recipe[recipe_name]
if mods["quality"] then
local recycling = require("__quality__/prototypes/recycling")
recycling.generate_recycling_recipe(recipe)
recipe.auto_recycle = nil
end