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.
18 lines
391 B
18 lines
391 B
local SLE, T, E, L, V, P, G = unpack(ElvUI_SLE)
|
|
local B = SLE.Blizzard
|
|
local _G = _G
|
|
|
|
function B:Initialize()
|
|
B.db = E.db.sle.blizzard
|
|
if not SLE.initialized then return end
|
|
|
|
PVPReadyDialog:Hide()
|
|
|
|
hooksecurefunc(TalkingHeadFrame, 'PlayCurrent', function(frame)
|
|
if E.db.sle.skins.talkinghead.hide then
|
|
frame:Hide()
|
|
end
|
|
end)
|
|
end
|
|
|
|
SLE:RegisterModule(B:GetName())
|
|
|