Skip to content

Commit ec85a16

Browse files
Increased the output fluidbox size of all buildings from 100->1000. Allows fluid transfer at even higher rates before hitting engine limitations. Resolves pyanodon/pybugreports#1203 (#92)
1 parent 223f311 commit ec85a16

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+104
-103
lines changed

changelog.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Date: ????
44
Changes:
55
- Fixed some techs having a too-fast cycle time
66
- Fixed all techs added by "enable all feature flags" not being seen by autotech.
7+
- Increased the output fluidbox size of all buildings from 100->1000. Allows fluid transfer at even higher rates before hitting engine limitations. Resolves https://github.com/pyanodon/pybugreports/issues/1203
78
- Renamed "Build a phytoplankton farm (Recipe)" recipe name to "Phytoplankton Farm MK 01 (Recipe)". Resolves https://github.com/pyanodon/pybugreports/issues/1215
89
---------------------------------------------------------------------------------------------------
910
Version: 3.0.16

prototypes/buildings/agitator-mk01.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,14 +126,14 @@ ENTITY {
126126
production_type = "output",
127127
pipe_picture = py.pipe_pictures("assembling-machine-2", {0.17, 2.85}, {0.18, -2.9}, {3.1, -0.15}, {-2.9, -0.2}, pipes),
128128
pipe_covers = py.pipe_covers(false, true, true, false),
129-
volume = 100,
129+
volume = 1000,
130130
pipe_connections = {{flow_direction = "output", position = {-2.0, 0.0}, direction = defines.direction.west}}
131131
},
132132
{
133133
production_type = "output",
134134
pipe_picture = py.pipe_pictures("assembling-machine-2", {0.17, 2.85}, {0.18, -2.9}, {3.1, -0.15}, {-2.9, -0.2}, pipes),
135135
pipe_covers = py.pipe_covers(false, true, true, false),
136-
volume = 100,
136+
volume = 1000,
137137
pipe_connections = {{flow_direction = "output", position = {0.0, -2.0}, direction = defines.direction.north}}
138138
},
139139
},

prototypes/buildings/agitator-mk02.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,14 +124,14 @@ ENTITY {
124124
production_type = "output",
125125
pipe_picture = py.pipe_pictures("assembling-machine-2", {0.17, 2.85}, {0.18, -2.9}, {3.1, -0.15}, {-2.9, -0.2}, pipes),
126126
pipe_covers = py.pipe_covers(false, true, true, false),
127-
volume = 100,
127+
volume = 1000,
128128
pipe_connections = {{flow_direction = "output", position = {-2.0, 0.0}, direction = defines.direction.west}}
129129
},
130130
{
131131
production_type = "output",
132132
pipe_picture = py.pipe_pictures("assembling-machine-2", {0.17, 2.85}, {0.18, -2.9}, {3.1, -0.15}, {-2.9, -0.2}, pipes),
133133
pipe_covers = py.pipe_covers(false, true, true, false),
134-
volume = 100,
134+
volume = 1000,
135135
pipe_connections = {{flow_direction = "output", position = {0.0, -2.0}, direction = defines.direction.north}}
136136
},
137137
},

prototypes/buildings/agitator-mk03.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,14 +123,14 @@ ENTITY {
123123
production_type = "output",
124124
pipe_picture = py.pipe_pictures("assembling-machine-2", {0.17, 2.85}, {0.18, -2.9}, {3.1, -0.15}, {-2.9, -0.2}, pipes),
125125
pipe_covers = py.pipe_covers(false, true, true, false),
126-
volume = 100,
126+
volume = 1000,
127127
pipe_connections = {{flow_direction = "output", position = {-2.0, 0.0}, direction = defines.direction.west}}
128128
},
129129
{
130130
production_type = "output",
131131
pipe_picture = py.pipe_pictures("assembling-machine-2", {0.17, 2.85}, {0.18, -2.9}, {3.1, -0.15}, {-2.9, -0.2}, pipes),
132132
pipe_covers = py.pipe_covers(false, true, true, false),
133-
volume = 100,
133+
volume = 1000,
134134
pipe_connections = {{flow_direction = "output", position = {0.0, -2.0}, direction = defines.direction.north}}
135135
},
136136
},

prototypes/buildings/agitator-mk04.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,14 +124,14 @@ ENTITY {
124124
production_type = "output",
125125
pipe_picture = py.pipe_pictures("assembling-machine-2", {0.17, 2.85}, {0.18, -2.9}, {3.1, -0.15}, {-2.9, -0.2}, pipes),
126126
pipe_covers = py.pipe_covers(false, true, true, false),
127-
volume = 100,
127+
volume = 1000,
128128
pipe_connections = {{flow_direction = "output", position = {-2.0, 0.0}, direction = defines.direction.west}}
129129
},
130130
{
131131
production_type = "output",
132132
pipe_picture = py.pipe_pictures("assembling-machine-2", {0.17, 2.85}, {0.18, -2.9}, {3.1, -0.15}, {-2.9, -0.2}, pipes),
133133
pipe_covers = py.pipe_covers(false, true, true, false),
134-
volume = 100,
134+
volume = 1000,
135135
pipe_connections = {{flow_direction = "output", position = {0.0, -2.0}, direction = defines.direction.north}}
136136
},
137137
},

prototypes/buildings/bioreactor.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ ENTITY {
8686
production_type = "output",
8787
pipe_picture = py.pipe_pictures("assembling-machine-3", nil, {-0.0, -0.95}, nil, nil),
8888
pipe_covers = py.pipe_covers(true, true, true, true),
89-
volume = 100,
89+
volume = 1000,
9090
pipe_connections = {{flow_direction = "output", position = {1.0, -3.0}, direction = defines.direction.north}},
9191
priority = "extra-high"
9292
},
@@ -95,7 +95,7 @@ ENTITY {
9595
production_type = "output",
9696
pipe_picture = py.pipe_pictures("assembling-machine-3", nil, {-0.0, -0.95}, nil, nil),
9797
pipe_covers = py.pipe_covers(true, true, true, true),
98-
volume = 100,
98+
volume = 1000,
9999
pipe_connections = {{flow_direction = "output", position = {-1.0, -3.0}, direction = defines.direction.north}},
100100
priority = "extra-high"
101101
},

prototypes/buildings/centrifugal-pan-mk01.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ ENTITY {
157157
{
158158
production_type = "output",
159159
pipe_covers = py.pipe_covers(false, true, true, true),
160-
volume = 100,
160+
volume = 1000,
161161
pipe_picture = py.pipe_pictures("assembling-machine-2", {2.5, 5.3}, {-1.5, -5.7}, {5.5, -2.5}, {-5.5, 2.4}, pipe_left),
162162
pipe_connections = {{flow_direction = "output", position = {2.5, 4.5}, direction = defines.direction.south}}
163163
},
@@ -171,7 +171,7 @@ ENTITY {
171171
{
172172
production_type = "output",
173173
pipe_covers = py.pipe_covers(false, true, true, true),
174-
volume = 100,
174+
volume = 1000,
175175
pipe_picture = py.pipe_pictures("assembling-machine-2", nil, {2.5, -5.7}, {5.5, 2.5}, {-5.5, -2.5}, pipe_right),
176176
pipe_connections = {{flow_direction = "output", position = {-2.5, 4.5}, direction = defines.direction.south}}
177177
},

prototypes/buildings/centrifugal-pan-mk02.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ ENTITY {
155155
{
156156
production_type = "output",
157157
pipe_covers = py.pipe_covers(false, true, true, true),
158-
volume = 100,
158+
volume = 1000,
159159
pipe_picture = py.pipe_pictures("assembling-machine-2", {2.5, 5.3}, {-1.5, -5.7}, {5.5, -2.5}, {-5.5, 2.4}, pipe_left),
160160
pipe_connections = {{flow_direction = "output", position = {2.5, 4.5}, direction = defines.direction.south}}
161161
},
@@ -169,7 +169,7 @@ ENTITY {
169169
{
170170
production_type = "output",
171171
pipe_covers = py.pipe_covers(false, true, true, true),
172-
volume = 100,
172+
volume = 1000,
173173
pipe_picture = py.pipe_pictures("assembling-machine-2", nil, {2.5, -5.7}, {5.5, 2.5}, {-5.5, -2.5}, pipe_right),
174174
pipe_connections = {{flow_direction = "output", position = {-2.5, 4.5}, direction = defines.direction.south}}
175175
},

prototypes/buildings/centrifugal-pan-mk03.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ ENTITY {
154154
{
155155
production_type = "output",
156156
pipe_covers = py.pipe_covers(false, true, true, true),
157-
volume = 100,
157+
volume = 1000,
158158
pipe_picture = py.pipe_pictures("assembling-machine-2", {2.5, 5.3}, {-1.5, -5.7}, {5.5, -2.5}, {-5.5, 2.4}, pipe_left),
159159
pipe_connections = {{flow_direction = "output", position = {2.5, 4.5}, direction = defines.direction.south}}
160160
},
@@ -168,7 +168,7 @@ ENTITY {
168168
{
169169
production_type = "output",
170170
pipe_covers = py.pipe_covers(false, true, true, true),
171-
volume = 100,
171+
volume = 1000,
172172
pipe_picture = py.pipe_pictures("assembling-machine-2", nil, {2.5, -5.7}, {5.5, 2.5}, {-5.5, -2.5}, pipe_right),
173173
pipe_connections = {{flow_direction = "output", position = {-2.5, 4.5}, direction = defines.direction.south}}
174174
},

prototypes/buildings/centrifugal-pan-mk04.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ ENTITY {
155155
{
156156
production_type = "output",
157157
pipe_covers = py.pipe_covers(false, true, true, true),
158-
volume = 100,
158+
volume = 1000,
159159
pipe_picture = py.pipe_pictures("assembling-machine-2", {2.5, 5.3}, {-1.5, -5.7}, {5.5, -2.5}, {-5.5, 2.4}, pipe_left),
160160
pipe_connections = {{flow_direction = "output", position = {2.5, 4.5}, direction = defines.direction.south}}
161161
},
@@ -169,7 +169,7 @@ ENTITY {
169169
{
170170
production_type = "output",
171171
pipe_covers = py.pipe_covers(false, true, true, true),
172-
volume = 100,
172+
volume = 1000,
173173
pipe_picture = py.pipe_pictures("assembling-machine-2", nil, {2.5, -5.7}, {5.5, 2.5}, {-5.5, -2.5}, pipe_right),
174174
pipe_connections = {{flow_direction = "output", position = {-2.5, 4.5}, direction = defines.direction.south}}
175175
},

0 commit comments

Comments
 (0)