Added verbose

This commit is contained in:
Cooldude2606
2018-05-20 18:34:50 +01:00
parent 3c1003544d
commit 06788c04d7
6 changed files with 55 additions and 30 deletions

View File

@@ -17,17 +17,18 @@ Pass a table with the names of the objects you want and it will be return in tha
local StdLib = {}
require '/table'
require '/string'
require '/time'
StdLib.Color = require '/color'
StdLib.Game = require '/game'
StdLib.Event = require '/event'
require('/table')
require('/string')
require('/time')
StdLib.Color = require('/color')
StdLib.Game = require('/game')
StdLib.Event = require('/event')
return function(rtn)
local _return = {}
for _,name in pairs(rtn) do
if StdLib[name] then
verbose('StdLib Extraction: '..name)
table.insert(_return,StdLib[name])
end
end