There seems to be a division by Zero error when using the guide addon on the Seasons of Mastery beta.
I did a temporary fix by inserting:”
local length = v:DistanceTo(Math:CreatePoint(0,0))
if length ==0 then
length = 1
end
local vNormal = Math:CreatePoint(v.x / length, v.y / length)
” (top and bottom line to specify location)
into the EnlargePoints function.
dont know if it broke any functionality, but i’m no longer getting lua errors and the game does not seem to lag more and more as errors stack up, which it did before i added my fix.