scanning miner tweaks

This commit is contained in:
kepler155c
2018-11-01 15:28:43 -04:00
parent 44f8e61f2f
commit 93a31994b7

View File

@@ -413,10 +413,13 @@ local function scan()
s, m = turtle.digAt(b) s, m = turtle.digAt(b)
end end
if not s then if not s then
page.statusBar:setValue('status', m) page.statusBar:setValue('status', b.name .. ' ' .. m)
page.statusBar:draw() page.statusBar:draw()
page:sync() page:sync()
os.sleep(3) if debug and type(debug) == 'function' then
debug(b.name .. ' ' .. m)
end
-- os.sleep(3)
else else
page.statusBar:setValue('mining', m) page.statusBar:setValue('mining', m)
end end
@@ -452,7 +455,10 @@ local function mineChunk()
if turtle.isAborted() then if turtle.isAborted() then
error('aborted') error('aborted')
end end
status('scanning ' .. pt.y + mining.home.y - 8 .. '-' .. pt.y + mining.home.y + 8) status('scanning %d %d-%d',
mining.chunkIndex,
pt.y + mining.home.y - 8,
pt.y + mining.home.y + 8)
turtle.select(1) turtle.select(1)
safeGoto(pt.x, pt.z, pt.y) safeGoto(pt.x, pt.z, pt.y)