From 48b7386a4dd77ceb0c18e2c7b2b6374163ffd4db Mon Sep 17 00:00:00 2001 From: PreLeyZero Date: Tue, 5 Apr 2022 20:53:51 +0200 Subject: [PATCH] fixed silo tank fluidboxes --- prototypes/electronic/el_tank.lua | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/prototypes/electronic/el_tank.lua b/prototypes/electronic/el_tank.lua index 1e00b58..9d17614 100644 --- a/prototypes/electronic/el_tank.lua +++ b/prototypes/electronic/el_tank.lua @@ -38,7 +38,7 @@ data:extend({ }, max_health = 300, corpse = 'small-remnants', - collision_box = {{-3.2,-3.2},{3.2,3.2}}, + collision_box = {{-3.5,-3.5},{3.5,3.5}}, selection_box = {{-3.5,-3.5},{3.5,3.5}}, pictures = { picture = { @@ -84,17 +84,17 @@ data:extend({ pipe_covers = pipecoverspictures(), pipe_connections = { - {type = "input-output", position = {-3.8, 1}}, - {type = "input-output", position = {-3.8, -1}}, + {type = "input-output", position = {-4, 1}}, + {type = "input-output", position = {-4, -1}}, - {type = "input-output", position = {3.8, 1}}, - {type = "input-output", position = {3.8, -1}}, + {type = "input-output", position = {4, 1}}, + {type = "input-output", position = {4, -1}}, - {type = "input-output", position = {1, 3.8}}, - {type = "input-output", position = {1, -3.8}}, + {type = "input-output", position = {1, 4}}, + {type = "input-output", position = {1, -4}}, - {type = "input-output", position = {-1, 3.8}}, - {type = "input-output", position = {-1, -3.8}} + {type = "input-output", position = {-1, 4}}, + {type = "input-output", position = {-1, -4}} }, production_type = "input-output" },