This is why:

Code: Select all
local recipes = data.raw.recipe
for recipe_name, recipe in pairs (recipes) do
recipe.allow_decomposition = false
end
I've made this mod, but it doesn't work as expected.
The mod works, but not as I expected.Mr. Tact wrote: Sun Apr 28, 2019 3:12 pm Uh, is it just me or does this seem like the core of the problem must be a bug in one of those mods? The list of raw materials you use as an example makes no sense.
No, it is typical for any mod that adds loops. It ends up tracing the resources back until some cutoff point and you get a ton of all the resources tangentually related via said loops.Mr. Tact wrote: Sun Apr 28, 2019 3:12 pm Uh, is it just me or does this seem like the core of the problem must be a bug in one of those mods? The list of raw materials you use as an example makes no sense.
Huh. Used plenty of mods, including at least some of ones shown here and have never seen that problem. Weird.Ranakastrasz wrote: Sun Apr 28, 2019 4:45 pm No, it is typical for any mod that adds loops. It ends up tracing the resources back until some cutoff point and you get a ton of all the resources tangentually related via said loops.