Thread system added

This commit is contained in:
Cooldude2606
2017-12-08 17:52:24 +00:00
parent 89fff7eba9
commit c0b87ec904
4 changed files with 87 additions and 39 deletions

View File

@@ -29,11 +29,11 @@ require '/GuiParts/left'
require '/GuiParts/popup']]
return function(rtn)
local to_return = {}
local _return = {}
for _,name in pairs(rtn) do
if StdExpCoreLib[name] then
table.insert(to_return,StdExpCoreLib[name])
table.insert(_return,StdExpCoreLib[name])
end
end
return unpack(to_return)
return unpack(_return)
end