Fixed Blizzard's TradeSkill coloring when you press View Crafters
This commit is contained in:
parent
a88cdb9693
commit
c436c6af9d
1 changed files with 9 additions and 0 deletions
|
@ -73,6 +73,15 @@ function mod:OnEnable()
|
||||||
|
|
||||||
-- louder LFD sound
|
-- louder LFD sound
|
||||||
self:RegisterEvent("LFG_PROPOSAL_SHOW");
|
self:RegisterEvent("LFG_PROPOSAL_SHOW");
|
||||||
|
|
||||||
|
-- Fix guild crafters
|
||||||
|
self:RegisterEvent("ADDON_LOADED", function(_, name)
|
||||||
|
if name == "Blizzard_TradeSkillUI" then
|
||||||
|
for i=1, TRADE_SKILL_GUILD_CRAFTERS_DISPLAYED do
|
||||||
|
_G["TradeSkillGuildCrafter"..i.."Text"].SetTextColor = function() end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Slash Commands --------------------------------------------------------------
|
-- Slash Commands --------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue