This article is tagged with:
Lua how to get the index of a nested table
and lua
Lua how to get the index of a nested table
function findTL(tbl)
for key, data in pairs(tbl) do
if data.tl == tlSearch then
return key
end
end
end
local key = findTL(objects, 22)