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.
13 lines
386 B
13 lines
386 B
local AS, L, S, R = unpack(AddOnSkins)
|
|
|
|
local _G = _G
|
|
|
|
function R:Blizzard_AzeriteUI()
|
|
if not AS:IsSkinEnabled('Blizzard_AzeriteUI', 'azerite') then return end
|
|
|
|
_G.AzeriteEmpoweredItemUIPortrait:Hide()
|
|
S:HandleFrame(_G.AzeriteEmpoweredItemUI)
|
|
_G.AzeriteEmpoweredItemUI.ClipFrame.BackgroundFrame.Bg:Hide()
|
|
end
|
|
|
|
AS:RegisterSkin('Blizzard_AzeriteUI', nil, 'ADDON_LOADED')
|
|
|