This mod adds an Assembly machine, furnace and more with a speed of 5x and x100 recipe for all recipes and more
Required Mods: EzLib >= 0.1.3
Current maintainer: ZwerOxotnik
Error while running setup for entity prototype "X100_barreling_pump" (assembling-machine): Invalid fluid pipe connections: connections must all be at least 1 tile distance from each other.
assembling-machine fluidbox 1 connection 1 ends up being the same tile as assembling-machine fluidbox 2 connection 1.
I had the same issue, so I looked into it.
prototypes\X100_barreling_pump.lua
At the end of the file..
Change:
pipe_connections = {{ type = "output", position = {0.5, -1.35} }},
To:
pipe_connections = {{ type = "output", position = {0.5, 1.35} }},
It seems that if the pipe connections are in the same spot it breaks. I haven't been able to test if this actually works, but at least mine is loading now.