Hey guys,
I am trying to remove the error which is shown when someone doesnt have my addon (a dll file) installed.
This error gets thrown even though I tried calling it within pcall.
local succ, err = pcall( require, "tslib" )
local succ, err = pcall( function() require("tslib") end)
Any ideas if its preventable? <3