Fixed Sync Emit

This commit is contained in:
Cooldude2606
2018-11-09 18:48:38 +00:00
parent 7c00cfcaaa
commit 961dc3f34c

View File

@@ -234,6 +234,14 @@ Sync.info = setmetatable({},{
if not is_type(set,'table') then return false end
for key,value in pairs(set) do global[key] = value end
return true
end,
__pairs=function(tbl)
local tbl = global
local function next_pair(tbl,k)
k, v = next(tbl, k)
if type(v) ~= nil then return k,v end
end
return next_pair, tbl, nil
end
})