Hey there,
thanks for this mod! I felt like torturing myself and this is already doing a really good job from the start! Especially since I combined it with scrappy industry.
I'm excited to see how much more torture I can endure with this.
One tiny problem I have is, that I'm playing with a bunch of mods, that add a bunch of machines. Sadly they didn't get the super glued quality modules.
Since they are hundreds of machines, I suppose it doesn't make much sense in posting each one here, so I did a bit of digging and found a solution that would add compatibility towards all the mods:
in "data-final-fixes.lua"
instead of calling your set list of machines:
for _, machine_data in pairs(all_machines) do
call ALL the machines with the according type:
for _, type in pairs({"assembling-machine", "furnace", "mining-drill"}) do
for _, machine_data in pairs(data.raw[type]) do
From my testing, it seemed to work for all the assembling/furnace/mining machines I saw.