From 7e794c030eded78cd0d1f78c6e8b651830812f78 Mon Sep 17 00:00:00 2001 From: Adamo Date: Mon, 16 Nov 2020 20:13:48 -0500 Subject: [PATCH] Fixed fluid box inputs. --- changelog.txt | 8 ++++++++ facilities.lua | 32 ++++++++++++++++++++------------ 2 files changed, 28 insertions(+), 12 deletions(-) diff --git a/changelog.txt b/changelog.txt index 5b5eca0..215f2a9 100644 --- a/changelog.txt +++ b/changelog.txt @@ -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 diff --git a/facilities.lua b/facilities.lua index 2f20a92..aff7103 100644 --- a/facilities.lua +++ b/facilities.lua @@ -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,