diff --git a/changelog.txt b/changelog.txt index 7e5918d7..95d121eb 100644 --- a/changelog.txt +++ b/changelog.txt @@ -8,6 +8,7 @@ Date: ? - Fixed crawdad not eating a new piece of food to continue to fuel modules even when both slots have stacks of food loaded. Resolves https://github.com/pyanodon/pybugreports/issues/563 - Crawdad, dingrido, and phadaisus now support automated logistics requests. - Bedding recipes now allow productivity modules. + - Fixed that the biofluid network vessels were effected by the max extent parameter. Adjusted max extent to 2,000,000 tiles. TURD: - Nerfed prod % for sawblade modules. MK01: 25% -> 5%, MK02: 25% -> 7%, MK03: 25% -> 10%, MK04: 25% -> 12%. - Fixed that mixing kickalk path 1 with wood processing unit path 2 would brick your save and prevent bedding from being craftable. diff --git a/prototypes/biofluid/bioport.lua b/prototypes/biofluid/bioport.lua index 3f217fff..bb21a797 100644 --- a/prototypes/biofluid/bioport.lua +++ b/prototypes/biofluid/bioport.lua @@ -91,6 +91,7 @@ ENTITY { fluid_boxes = { { production_type = "output", + max_pipeline_extent = 2000000, -- The radius of nauvis pipe_picture = py.pipe_pictures("assembling-machine-2", nil, {0.0, -0.96}, nil, nil), pipe_covers = py.pipe_covers(false, true, true, true), volume = 100, diff --git a/prototypes/biofluid/provider-tank.lua b/prototypes/biofluid/provider-tank.lua index cd7c264f..b621645c 100644 --- a/prototypes/biofluid/provider-tank.lua +++ b/prototypes/biofluid/provider-tank.lua @@ -69,6 +69,7 @@ ENTITY { }, { volume = 1, + max_pipeline_extent = 2000000, -- The radius of nauvis pipe_covers = _G.pipecoverspictures(), pipe_connections = { {flow_direction = "output", position = {0, 0}, direction = defines.direction.south, connection_category = "biofluid"}, diff --git a/prototypes/biofluid/requester-tank.lua b/prototypes/biofluid/requester-tank.lua index db50c59f..a97d9fd9 100644 --- a/prototypes/biofluid/requester-tank.lua +++ b/prototypes/biofluid/requester-tank.lua @@ -70,6 +70,7 @@ ENTITY { }, { volume = 1, + max_pipeline_extent = 2000000, -- The radius of nauvis pipe_covers = _G.pipecoverspictures(), pipe_connections = { {flow_direction = "input", position = {0, 0}, direction = defines.direction.south, connection_category = "biofluid"}, diff --git a/prototypes/biofluid/vessel.lua b/prototypes/biofluid/vessel.lua index 045c9e4b..6ecb6c78 100644 --- a/prototypes/biofluid/vessel.lua +++ b/prototypes/biofluid/vessel.lua @@ -196,6 +196,7 @@ local vessel = table.deepcopy(data.raw["pipe"]["pipe"]) vessel.icon_draw_specification = {scale = 0} vessel.fluid_box = { volume = 1, + max_pipeline_extent = 2000000, -- The radius of nauvis pipe_connections = { {direction = defines.direction.north, position = {0, 0}, connection_category = "biofluid"}, {direction = defines.direction.east, position = {0, 0}, connection_category = "biofluid"}, @@ -332,6 +333,7 @@ underground_pipe.icon = data.raw.item["vessel-to-ground"].icon underground_pipe.icon_size = 64 underground_pipe.fluid_box = { volume = 1, + max_pipeline_extent = 2000000, -- The radius of nauvis pipe_connections = { { position = {0, underground_pipe.collision_box[1][2]},