Advanced Fluid Handling (simple)


This makes Advanced Fluid Handling a little more simple. Intermediates are replaced by the sum of the plates that are needed to make the pipe.

Tweaks
14 days ago
1.1 - 2.0
796

b [fixed] Crash when not using Space Age

a month ago
(updated a month ago)

I've tried adding it to a new run of Space Exploration with the new 0.7 version and it crashes on launch:

Failed to load mods: underground-pipe-pack-simple/data-updates.lua:188: attempt to index local 'tech' (a nil value)
stack traceback:
underground-pipe-pack-simple/data-updates.lua:188: in function 'add_tech'
underground-pipe-pack-simple/data-updates.lua:262: in main chunk

Mods to be disabled:
• underground-pipe-pack-simple (2.0.2)

Line 188 is this:

local tech = table.deepcopy(data.raw.technology['foundry'])

Adding a guard on line 262 to only add this tech when space-age is enabled should work to fix it:

if feature_flags["space_travel"] then
    add_tech()
end

But I'm seeing some metallurgy related stuff later on, so it's possible more modifications are required to make it fully compatible with SA-less Factorio.

a month ago

I get this too, it's prevalent when using Space Exploration. Can we please get a fix?

21 days ago

Not sure why the source code isn't here, based on the license. Couldn't even find the repo on the author's Github profile.
But I made a new repo of my own and fixed this issue.

https://github.com/daz96050/simple-underground-pipes/releases/download/2.0.3/underground-pipe-pack-simple_2.0.3.zip

20 days ago

Thank you!