also fixed that same progress feature

This commit is contained in:
justuswolff
2026-02-17 21:58:58 +01:00
parent a7953e499c
commit 3c8896abbb

View File

@@ -95,7 +95,7 @@ local function fill(ntype, x,y,z, buf, sx,sz)
term.setcol(colors.white, colors.black)
while #neighbors > 0 do
term.setCursorPos(1,1)
term.write(tostring(processed).."/"..tostring(#totalneighbors))
term.write(tostring(processed).."/"..tostring(totalneighbors))
local cn = table.remove(neighbors, 1)
local cx,cz = cn[1],cn[2]
local newneigh = fill_getneighbors(cx,y,cz, sx,sz, inittype,buf)