Picker Pipe Tools


Adds tools to make fluid handling with pipes much better. -Orphan finder -Pipe cleaner (In Blueprint Menu) -Underground Pipe Highlighter Press <CTRL SHIFT P>(press again to toggle off) - Pipe Highlighter Verify connections by hovering over pipes. (Configurable in mod settings) -Pipe clamps Press <CTRL + R> on pipes, or use tool from Blueprint Menu (Like flow control but automatic) -Auto clamps (close proximity pipe laying without pipes connecting) toggle with /autoclamp or <CTRL SHIFT C> [Check mod startup settings for disabling certain parts of mod if you want QoL only]

Utilities
1 year, 10 months ago
0.16 - 1.1
6.09K

b Error while loading entity prototype "pipe-clamped-single"

3 years ago

I have patched this for myself.

In pipe-clamps.lua, replace the lines from 177 to 186 (the current_entity.icons assignment) to this:

            local old_icon = current_entity.icon or data.raw['pipe']['pipe'].icon
            local new_icons = nil
            if old_icon then
                new_icons = {
                    {
                        icon = old_icon,
                        icon_size = 32
                    },
                    {
                        icon = '__PickerPipeTools__/graphics/icons/lock.png',
                        icon_size = 32
                    }
                }
            else
                new_icons = current_entity.icons or data.raw['pipe']['pipe'].icons
                new_icons[#new_icons+1] = 
                {
                    icon = '__PickerPipeTools__/graphics/icons/lock.png',
                    icon_size = 32
                }
            end

New response