From ad14b3f52112d6383d4ffc2217a5ffda1622a9c0 Mon Sep 17 00:00:00 2001 From: Guillaume ARM Date: Sun, 19 May 2024 23:59:40 +0200 Subject: [PATCH] fix(inferium-harvester): fuel chest should be bottom --- inferium-harvester.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inferium-harvester.lua b/inferium-harvester.lua index 5b083ac..ef09cbe 100644 --- a/inferium-harvester.lua +++ b/inferium-harvester.lua @@ -1,7 +1,7 @@ local turtleUtils = require('libs/turtle-utils') local config = require('config/harvesting') -local VERSION = "0.4.0" +local VERSION = "0.4.1" local IDLE_TIME = 2 local MIN_FUEL_NEEDED = (10 + config.firstCropZ + config.length) * 2 local MIN_FREE_SLOTS_BEFORE_COMPACT = 4 @@ -91,7 +91,7 @@ end local function refuelProcedure() turtle.turnLeft() - local refuelOk, refuelErr = turtleUtils.refuelWithBuffer('top', 'front', MIN_FUEL_NEEDED, IDLE_TIME) + local refuelOk, refuelErr = turtleUtils.refuelWithBuffer('bottom', 'front', MIN_FUEL_NEEDED, IDLE_TIME) if not refuelOk then error('Cannot refuel the turtle: "' .. refuelErr .. '"')