From 7dca84b128a77ceff00a66a0439d003c1090c875 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Tue, 3 Dec 2024 22:04:52 +0100 Subject: [PATCH] Don't use chest slot as fuel --- quarry.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/quarry.lua b/quarry.lua index 646cd3c..c982d4e 100644 --- a/quarry.lua +++ b/quarry.lua @@ -23,10 +23,15 @@ local function refuel(minFuel) while fuelLevel < minFuel do Logger:debug("Checking fuel level:", fuelLevel) for i=1,16 do + if i == CHEST_SLOT then + goto continue + end + if turtle.getItemCount(i) > 0 then turtle.select(i) turtle.refuel() end + ::continue:: end fuelLevel = turtle.getFuelLevel() end