fix: remove unnecessary variable in function call
This commit is contained in:
parent
ef808abb94
commit
56c511324e
1 changed files with 1 additions and 1 deletions
2
mine.lua
2
mine.lua
|
|
@ -330,7 +330,7 @@ function process (stack, starting_point)
|
||||||
if canMine(working) then
|
if canMine(working) then
|
||||||
mine(working)
|
mine(working)
|
||||||
else
|
else
|
||||||
local new, remainder = split(working, mode.v)
|
local new, remainder = split(working)
|
||||||
table.insert(stack, remainder)
|
table.insert(stack, remainder)
|
||||||
table.insert(stack, new)
|
table.insert(stack, new)
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue