From 4091084bea70e8aea4f30f8e7bdad47049fba75c Mon Sep 17 00:00:00 2001 From: Guillaume ARM Date: Sun, 26 May 2024 03:54:02 +0200 Subject: [PATCH] fix(tunnels-miner): refuel all from inventory at start --- tunnels-miner.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tunnels-miner.lua b/tunnels-miner.lua index 3c8a678..ba0bfbc 100644 --- a/tunnels-miner.lua +++ b/tunnels-miner.lua @@ -6,7 +6,7 @@ local TIME_TO_START = 3 local IDLE_TIME_BETWEEN_TUNNELS = 1 local SPACE_BETWEEN_TUNNELS = 3 -local VERSION = "1.0.1" +local VERSION = "1.0.2" local MOVES_BY_DIRECTION = { right = { @@ -128,6 +128,8 @@ end local function main(config) assertValidConfig(config) + + turtleUtils.refuelAllFromInventory() printFuelReport(config) assertEnoughFuelForTunnel(config)