Change all use of heroclass to use RAID_CLASS_COLORS instead. This can be changed to CUSTOM_CLASS_COLORS later with a color picker for each class, but to support CoA classes need to go back to being colored properly.

Fix remaining lua errors covered by ascension patches

Add Addon Skins
Add Enhanced Friends List
This commit is contained in:
Andrew6810
2022-10-28 07:12:13 -07:00
parent 60ef8a38af
commit df7cc26a64
205 changed files with 18480 additions and 35 deletions
@@ -0,0 +1,35 @@
local E, L, V, P, G = unpack(ElvUI)
local S = E:GetModule("Skins")
local AS = E:GetModule("AddOnSkins")
if not AS:IsAddonLODorEnabled("_NPCScan") then return end
-- NPCScan 3.3.5.5
-- https://www.curseforge.com/wow/addons/npcscan/files/441050
S:AddCallbackForAddon("_NPCScan", "_NPCScan", function()
if not E.private.addOnSkins._NPCScan then return end
_NPCScanButton:SetScale(1)
_NPCScanButton.SetScale = E.noop
_NPCScanButton:StripTextures()
_NPCScanButton:SetTemplate("Default", true)
_NPCScanButton:HookScript("OnEnter", S.SetModifiedBackdrop)
_NPCScanButton:HookScript("OnLeave", S.SetOriginalBackdrop)
for i = 1, _NPCScanButton:GetNumChildren() do
local child = select(i, _NPCScanButton:GetChildren())
if child and child:IsObjectType("Button") then
S:HandleCloseButton(child)
child:ClearAllPoints()
child:Point("TOPRIGHT", _NPCScanButton, "TOPRIGHT", 4, 5)
child:SetScale(1)
end
end
local NPCFoundText = select(4, _NPCScanButton:GetRegions())
NPCFoundText:SetTextColor(1, 1, 1, 1)
NPCFoundText:SetShadowOffset(1, -1)
end)