From 20e98d4b13eb3310d665b7f97a4848d1f809d12d Mon Sep 17 00:00:00 2001 From: PHIDIAS Date: Wed, 12 Feb 2025 19:51:53 +0900 Subject: [PATCH] . --- exp_legacy/module/modules/addons/miner.lua | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/exp_legacy/module/modules/addons/miner.lua b/exp_legacy/module/modules/addons/miner.lua index 17e38844..225bc53b 100644 --- a/exp_legacy/module/modules/addons/miner.lua +++ b/exp_legacy/module/modules/addons/miner.lua @@ -118,11 +118,9 @@ local function miner_check(entity) for i = 1, #entity.fluidbox do for _, p in pairs(entity.fluidbox.get_pipe_connections(i)) do - if p.flow_direction == "input" or p.flow_direction == "input-output" then - for x = 1, p.position.x do - for y = 1, p.position.y do - table.insert(pipe_build, { x = x, y = y }) - end + for x = 1, p.position.x do + for y = 1, p.position.y do + table.insert(pipe_build, { x = x, y = y }) end end end