Fix nil check assertions
This commit is contained in:
parent
408fed1ad2
commit
f6b76a522f
@ -79,7 +79,7 @@ end
|
|||||||
local function handleFullInv(minEmpty)
|
local function handleFullInv(minEmpty)
|
||||||
local didPlace = false
|
local didPlace = false
|
||||||
|
|
||||||
local result, drop, dig, onComplete
|
local result, drop, dig, onComplete = false, nil, nil, nil
|
||||||
-- Empty inventory
|
-- Empty inventory
|
||||||
while isFull(minEmpty) do
|
while isFull(minEmpty) do
|
||||||
if not didPlace then
|
if not didPlace then
|
||||||
@ -117,6 +117,7 @@ local function handleFullInv(minEmpty)
|
|||||||
::continue::
|
::continue::
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if result then
|
||||||
assert(dig ~= nil, "Placed chest, but dig operation is nil")
|
assert(dig ~= nil, "Placed chest, but dig operation is nil")
|
||||||
if didPlace and CHEST_PICKUP then
|
if didPlace and CHEST_PICKUP then
|
||||||
turtle.select(CHEST_SLOT)
|
turtle.select(CHEST_SLOT)
|
||||||
@ -126,6 +127,7 @@ local function handleFullInv(minEmpty)
|
|||||||
assert(onComplete ~= nil, "Placed chest, but onComplete operation is nil")
|
assert(onComplete ~= nil, "Placed chest, but onComplete operation is nil")
|
||||||
onComplete()
|
onComplete()
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
local function dig(checkRefuel)
|
local function dig(checkRefuel)
|
||||||
while not turtle.forward() do
|
while not turtle.forward() do
|
||||||
|
Loading…
x
Reference in New Issue
Block a user