Good morning,
As the title, found a bug in the compact processing recipe for Deadlock's belt stacking (dbl.lua in the recipe folder)
Current:
ingredients = { { name = "deadlock-stack-iron-ore", amount = 10, type = "item" } },
results = { { name = "deadlock-stack-iron-ore", amount = 10, type = "item" } },
Which will clearly result in the item in question making itself and yes, I did set up a loop.
Amended locally to:
ingredients = { { name = "deadlock-stack-iron-ore", amount = 10, type = "item" } },
results = { { name = "deadlock-stack-iron-plate", amount = 10, type = "item" } },
Now funtioning as intended.