check if even, yes? ok, add 1 no? dont add 1.

This commit is contained in:
Justus Wolff
2026-02-23 01:00:43 +01:00
parent 285ef315ab
commit ee428d09bc

View File

@@ -891,7 +891,9 @@ while true do
reset() reset()
print("Paired. Splitting stacks and sending out...") print("Paired. Splitting stacks and sending out...")
stacks = VP_splitstack(stacks, #accepted+1) -- plus 1 because we also build as the master turtle. local even = (VP_lengthofdict(stacks["stacks"])%(#accepted+1)) == 0
if even then even = #accepted+1 else even = #accepted end
stacks = VP_splitstack(stacks, even)
if #stacks["stacks"] ~= #accepted+1 then if #stacks["stacks"] ~= #accepted+1 then
printError("Internal error with VP_splitstack. It returned "..#stacks["stacks"].." stacks.") printError("Internal error with VP_splitstack. It returned "..#stacks["stacks"].." stacks.")
return return