From f6b76a522f220c5a8f5a96c5fa9cd02b0084d2f0 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Tue, 3 Dec 2024 23:10:09 +0100 Subject: [PATCH] Fix nil check assertions --- quarry.lua | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/quarry.lua b/quarry.lua index 336a32f..360a25f 100644 --- a/quarry.lua +++ b/quarry.lua @@ -79,7 +79,7 @@ end local function handleFullInv(minEmpty) local didPlace = false - local result, drop, dig, onComplete + local result, drop, dig, onComplete = false, nil, nil, nil -- Empty inventory while isFull(minEmpty) do if not didPlace then @@ -117,14 +117,16 @@ local function handleFullInv(minEmpty) ::continue:: end - assert(dig ~= nil, "Placed chest, but dig operation is nil") - if didPlace and CHEST_PICKUP then - turtle.select(CHEST_SLOT) - dig() + if result then + assert(dig ~= nil, "Placed chest, but dig operation is nil") + if didPlace and CHEST_PICKUP then + turtle.select(CHEST_SLOT) + dig() + end + + assert(onComplete ~= nil, "Placed chest, but onComplete operation is nil") + onComplete() end - - assert(onComplete ~= nil, "Placed chest, but onComplete operation is nil") - onComplete() end local function dig(checkRefuel)