From 65f6555f44c9f657055101e663e784beb6dd683f Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sun, 1 Dec 2024 05:04:52 +0100 Subject: [PATCH] Select chest slot --- quarry.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quarry.lua b/quarry.lua index 37f6bad..646cd3c 100644 --- a/quarry.lua +++ b/quarry.lua @@ -67,7 +67,7 @@ local function handleFullInv(minEmpty) -- Try: place, check block above is empty or dig it, place -- If all fails, print error, wait and repeat - if not (turtle.placeUp() or ((not turtle.inspectUp() or turtle.digUp()) and turtle.placeUp())) then + if not (turtle.select(CHEST_SLOT) and (turtle.placeUp() or ((not turtle.inspectUp() or turtle.digUp()) and turtle.placeUp()))) then Logger:error("Can't place chest :(") os.sleep(5) goto continue