fix: remove unnecessary variable in function call

This commit is contained in:
Emerson Rosen-Jones 2025-12-21 13:56:27 -05:00
parent ef808abb94
commit 56c511324e

View file

@ -330,7 +330,7 @@ function process (stack, starting_point)
if canMine(working) then
mine(working)
else
local new, remainder = split(working, mode.v)
local new, remainder = split(working)
table.insert(stack, remainder)
table.insert(stack, new)
end