Skip to content

Commit

Permalink
Fixed that the biofluid network vessels were effected by the max exte…
Browse files Browse the repository at this point in the history
…nt parameter. Adjusted max extent to 2,000,000 tiles.
  • Loading branch information
notnotmelon committed Nov 10, 2024
1 parent 3fc110e commit 78ee055
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 1 addition & 0 deletions prototypes/biofluid/bioport.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
1 change: 1 addition & 0 deletions prototypes/biofluid/provider-tank.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
Expand Down
1 change: 1 addition & 0 deletions prototypes/biofluid/requester-tank.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
Expand Down
2 changes: 2 additions & 0 deletions prototypes/biofluid/vessel.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
Expand Down Expand Up @@ -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]},
Expand Down

0 comments on commit 78ee055

Please sign in to comment.