You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.4 KiB

local SLE, T, E, L, V, P, G = unpack(ElvUI_SLE)
local type, pairs, tonumber = type, pairs, tonumber
local lower, wipe, next, print = strlower, wipe, next, print
local ReloadUI = ReloadUI
local strlower = strlower
local DisableAddOn = C_AddOns.DisableAddOn
local EnableAddOn = C_AddOns.EnableAddOn
local GetNumAddOns = C_AddOns.GetNumAddOns
local GetAddOnInfo = C_AddOns.GetAddOnInfo
function SLE:LuaError(msg)
local switch = strlower(msg)
if switch == 'on' or switch == '1' then
for i=1, GetNumAddOns() do
local name = GetAddOnInfo(i)
if (name ~= 'ElvUI' and name ~= 'ElvUI_Options' and name ~= 'ElvUI_Libraries' and name ~= 'ElvUI_SLE' and name ~= 'ElvUI_SLE_Dev') and E:IsAddOnEnabled(name) then
DisableAddOn(name, E.myname)
ElvDB.SLErrorDisabledAddOns[name] = i
end
end
SetCVar('scriptErrors', 1)
ReloadUI()
elseif switch == 'off' or switch == 'devoff' or switch == '0' then
if switch == 'off' then
SetCVar('scriptErrors', 0)
SLE:Print('Lua errors off.')
end
if next(ElvDB.SLErrorDisabledAddOns) then
for name in pairs(ElvDB.SLErrorDisabledAddOns) do
EnableAddOn(name, E.myname)
end
wipe(ElvDB.SLErrorDisabledAddOns)
ReloadUI()
end
else
SLE:Print('/slerror on - /slerror off', 'info')
end
end
function SLE:LoadCommands()
--Slash Commands
self:RegisterChatCommand('slerror', 'LuaError')
end