mirror of
https://github.com/kepler155c/opus
synced 2025-11-01 16:13:01 +00:00
update 6.tl3.lua
unpack > table.unpack
This commit is contained in:
@@ -241,7 +241,7 @@ local function _place(action, indexOrId)
|
|||||||
if not state.digPolicy(action) then
|
if not state.digPolicy(action) then
|
||||||
state.attackPolicy(action)
|
state.attackPolicy(action)
|
||||||
end
|
end
|
||||||
return unpack(result)
|
return table.unpack(result)
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -1024,7 +1024,7 @@ function turtle.run(fn, ...)
|
|||||||
|
|
||||||
synchronized(turtle, function()
|
synchronized(turtle, function()
|
||||||
turtle.resetState()
|
turtle.resetState()
|
||||||
s, m = pcall(function() fn(unpack(args)) end)
|
s, m = pcall(function() fn(table.unpack(args)) end)
|
||||||
turtle.resetState()
|
turtle.resetState()
|
||||||
if not s and m then
|
if not s and m then
|
||||||
_G.printError(m)
|
_G.printError(m)
|
||||||
|
|||||||
Reference in New Issue
Block a user