mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2025-12-30 20:41:41 +09:00
Thread system added
This commit is contained in:
@@ -25,11 +25,11 @@ StdLib.Game = require '/game'
|
||||
StdLib.Event = require '/event'
|
||||
|
||||
return function(rtn)
|
||||
local to_return = {}
|
||||
local _return = {}
|
||||
for _,name in pairs(rtn) do
|
||||
if StdLib[name] then
|
||||
table.insert(to_return,StdLib[name])
|
||||
table.insert(_return,StdLib[name])
|
||||
end
|
||||
end
|
||||
return unpack(to_return)
|
||||
return unpack(_return)
|
||||
end
|
||||
Reference in New Issue
Block a user