thisdp/dgs

dgsGetVisible misfunction

Ali-Ysf opened this issue · 1 comments

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

Fixed in 53f4d92