Is there any recent AddOn similar to Warmup that could help with figuring out which other addon is making my load screens go up to 30s?
It started happening after EA got activated and I’m really not fond of the idea of trying to turn them off one by one to find the culprit (s).
In Warmup.lua change:
for i=1,GetNumAddOns() do
if IsAddOnLoaded(i) then
if GetAddOnInfo(i) ~= "!!Warmup" then
outputFrame:AddMessage("Addon loaded before Warmup: ".. GetAddOnInfo(i))
end
end
end
To:
for i=1,C_AddOns.GetNumAddOns() do
if C_AddOns.IsAddOnLoaded(i) then
if C_AddOns.GetAddOnInfo(i) ~= "!!Warmup" then
outputFrame:AddMessage("Addon loaded before Warmup: ".. C_AddOns.GetAddOnInfo(i))
end
end
end
TYVM, that worked, now, to figure out what’s blocking the screen POST loading time…