Skip to content

Commit

Permalink
increase fluidbox size for fluid mining drills
Browse files Browse the repository at this point in the history
  • Loading branch information
notnotmelon committed Nov 20, 2023
1 parent 1808668 commit 30989f9
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 12 deletions.
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Date: ???
- Drilling fluid mk04 now correctly requires military tech.
- removed the tar to heavy oil direct recipe
- added decentralised PyPP cache file
- greatly increased the fluidbox size for natural gas extractors, oil derricks, and tar extractors (https://github.com/pyanodon/pybugreports/issues/323)
---------------------------------------------------------------------------------------------------
Version: 2.1.10
Date: 2023-9-3
Expand Down
2 changes: 1 addition & 1 deletion prototypes/buildings/natural-gas-extractor-mk01.lua
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ ENTITY {
},
output_fluid_box =
{
base_area = 1,
base_area = 10,
base_level = 1,
pipe_covers = DATA.Pipes.covers(false, true, true, true),
pipe_connections =
Expand Down
2 changes: 1 addition & 1 deletion prototypes/buildings/natural-gas-extractor-mk02.lua
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ ENTITY {
},
output_fluid_box =
{
base_area = 1,
base_area = 20,
base_level = 1,
pipe_covers = DATA.Pipes.covers(false, true, true, true),
pipe_connections =
Expand Down
2 changes: 1 addition & 1 deletion prototypes/buildings/natural-gas-extractor-mk03.lua
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ ENTITY {
},
output_fluid_box =
{
base_area = 1,
base_area = 30,
base_level = 1,
pipe_covers = DATA.Pipes.covers(false, true, true, true),
pipe_connections =
Expand Down
2 changes: 1 addition & 1 deletion prototypes/buildings/natural-gas-extractor-mk04.lua
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ ENTITY {
},
output_fluid_box =
{
base_area = 1,
base_area = 40,
base_level = 1,
pipe_covers = DATA.Pipes.covers(false, true, true, true),
pipe_connections =
Expand Down
2 changes: 1 addition & 1 deletion prototypes/buildings/oil-derrick-mk01.lua
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ ENTITY {
},
output_fluid_box =
{
base_area = 1,
base_area = 10,
base_level = 1,
--height = 10,
pipe_covers = DATA.Pipes.covers(false, true, true, true),
Expand Down
2 changes: 1 addition & 1 deletion prototypes/buildings/oil-derrick-mk02.lua
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ ENTITY {
},
output_fluid_box =
{
base_area = 3,
base_area = 20,
base_level = 1,
--height = 10,
pipe_covers = DATA.Pipes.covers(false, true, true, true),
Expand Down
2 changes: 1 addition & 1 deletion prototypes/buildings/oil-derrick-mk03.lua
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ ENTITY {
},
output_fluid_box =
{
base_area = 6,
base_area = 30,
base_level = 1,
--height = 10,
pipe_covers = DATA.Pipes.covers(false, true, true, true),
Expand Down
2 changes: 1 addition & 1 deletion prototypes/buildings/oil-derrick-mk04.lua
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ ENTITY {
},
output_fluid_box =
{
base_area = 10,
base_area = 40,
base_level = 1,
--height = 10,
pipe_covers = DATA.Pipes.covers(false, true, true, true),
Expand Down
2 changes: 1 addition & 1 deletion prototypes/buildings/tar-extractor-mk01.lua
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ ENTITY {
},
output_fluid_box =
{
base_area = 1,
base_area = 10,
base_level = 1,
pipe_covers = DATA.Pipes.covers(false, true, true, true),
pipe_picture = DATA.Pipes.pictures("assembling-machine-2", nil, {0.0, -0.96}, nil, nil),
Expand Down
2 changes: 1 addition & 1 deletion prototypes/buildings/tar-extractor-mk02.lua
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ ENTITY {
},
output_fluid_box =
{
base_area = 1,
base_area = 20,
base_level = 1,
pipe_covers = DATA.Pipes.covers(false, true, true, true),
pipe_picture = DATA.Pipes.pictures("assembling-machine-2", nil, {0.0, -0.96}, nil, nil),
Expand Down
2 changes: 1 addition & 1 deletion prototypes/buildings/tar-extractor-mk03.lua
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ ENTITY {
},
output_fluid_box =
{
base_area = 1,
base_area = 30,
base_level = 1,
pipe_covers = DATA.Pipes.covers(false, true, true, true),
pipe_picture = DATA.Pipes.pictures("assembling-machine-2", nil, {0.0, -0.96}, nil, nil),
Expand Down
2 changes: 1 addition & 1 deletion prototypes/buildings/tar-extractor-mk04.lua
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ ENTITY {
},
output_fluid_box =
{
base_area = 1,
base_area = 40,
base_level = 1,
pipe_covers = DATA.Pipes.covers(false, true, true, true),
pipe_picture = DATA.Pipes.pictures("assembling-machine-2", nil, {0.0, -0.96}, nil, nil),
Expand Down

0 comments on commit 30989f9

Please sign in to comment.