mirror of
https://asciireactor.com/factorio/adamo-chemical.git
synced 2024-11-23 10:25:05 +00:00
Fixed fluid box inputs.
This commit is contained in:
parent
12be075733
commit
7e794c030e
@ -1,3 +1,11 @@
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 0.3.4
|
||||
Date: 2020-11-16
|
||||
|
||||
Entities:
|
||||
- Fixed input fluid box on Process Vessel to not over-accept
|
||||
ingredients.
|
||||
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 0.3.3
|
||||
Date: 2020-11-15
|
||||
|
@ -337,33 +337,41 @@ local process_vessel_entity = {
|
||||
base_level = -1,
|
||||
height = 1,
|
||||
pipe_covers = vesselpipecovers(),
|
||||
pipe_connections = {
|
||||
{position = {-1.0,3.0}},
|
||||
}
|
||||
pipe_connections = {{
|
||||
type = "input",
|
||||
base_area = 10,
|
||||
position = {-1.0,3.0}
|
||||
}}
|
||||
},{
|
||||
production_type = "input",
|
||||
base_level = -1,
|
||||
height = 1,
|
||||
pipe_covers = vesselpipecovers(),
|
||||
pipe_connections = {
|
||||
{position = {1.0,-3.0}},
|
||||
}
|
||||
pipe_connections = {{
|
||||
type = "input",
|
||||
base_area = 10,
|
||||
position = {1.0,-3.0}
|
||||
}}
|
||||
},{
|
||||
production_type = "input",
|
||||
base_level = -1,
|
||||
height = 1,
|
||||
pipe_covers = vesselpipecovers(),
|
||||
pipe_connections = {
|
||||
{position = {3.0, 1.0}},
|
||||
}
|
||||
pipe_connections = {{
|
||||
type = "input",
|
||||
base_area = 10,
|
||||
position = {3.0, 1.0}
|
||||
}}
|
||||
},{
|
||||
production_type = "input",
|
||||
base_level = -1,
|
||||
height = 1,
|
||||
pipe_covers = vesselpipecovers(),
|
||||
pipe_connections = {
|
||||
{position = {-3.0,-1.0}},
|
||||
}
|
||||
pipe_connections = {{
|
||||
type = "input",
|
||||
base_area = 10,
|
||||
position = {-3.0,-1.0}
|
||||
}}
|
||||
},{
|
||||
production_type = "output",
|
||||
base_level = 1,
|
||||
|
Loading…
Reference in New Issue
Block a user