Recycling items with > 12 ingredients
Posted: Sat Sep 13, 2025 8:16 pm
I am not sure if this belongs here or somewhere else.
I am working on a mod (almost finished play testing!) in which one of the final items has 19 ingredients.
It turns out the recycler only has 12 output slots, so only 12 out of 19 ingredients will be retrieved. The rest just disappears into nothingness.
This is not random, always the same items are missing, making quality upcycling impossible.
I found a solution/work around, in the data-updates.lua I include:
This seems to fix it.
I hope this helps someone.
I am working on a mod (almost finished play testing!) in which one of the final items has 19 ingredients.
It turns out the recycler only has 12 output slots, so only 12 out of 19 ingredients will be retrieved. The rest just disappears into nothingness.
This is not random, always the same items are missing, making quality upcycling impossible.
I found a solution/work around, in the data-updates.lua I include:
Code: Select all
if mods["quality"] then
data.raw.furnace.recycler.result_inventory_size = 20
end
I hope this helps someone.