Edit To Ranking and ExpLib

This commit is contained in:
Cooldude2606
2018-01-02 00:59:15 +00:00
parent 6d4473bec5
commit 4144054e2d
2 changed files with 23 additions and 3 deletions

View File

@@ -139,4 +139,24 @@ function ExpLib.tick_to_display_format(tick)
end
end
function ExpLib.Gui_tree(root)
local tree = {}
for _,child in pairs(root.children) do
if #child.children > 0 then
if child.name then
tree[child.name] = ExpLib.Gui_tree(child)
else
table.insert(tree,ExpLib.Gui_tree(child))
end
else
if child.name then
tree[child.name] = child.type
else
table.insert(tree,child.type)
end
end
end
return tree
end
return ExpLib