I did write that into my code, a long time ago...
if settings.startup["adamo-nuclear-recipe-trolling"].value then
for _,recipe in pairs(data.raw.recipe) do
if recipe_uses(recipe,"uranium-238") then
replace_recipe_io(
recipe,
"uranium-238",
"adamo-nuclear-DU-oxide"
)
end
if recipe_uses(recipe,"uranium-235") then
replace_recipe_io(
recipe,
"uranium-235",
"adamo-nuclear-HEU-oxide"
)
end
end
end
Just double check for me: the recipe trolling setting in this mod is turned on for you, right?
Maybe he's creating more recipes in a later data phase... I'll move this to the very end of the final phase, I guess. It becomes something of a race issue, but I think that should be OK.