dgsGetVisible misfunction
Ali-Ysf opened this issue · 1 comments
Ali-Ysf commented
Line 273 in fucntions.lua
if not dgsElementData[p].visible then return false end
p doesn't exist as if it does the loop will break
Not sure what the idea is of that code but I changed it to
if dgsElementData[p] and not dgsElementData[p].visible then return false end
To make it work