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