1
0
Fork 0

Fixed Blizzard's TradeSkill coloring when you press View Crafters

This commit is contained in:
pigmonkey 2011-07-13 19:17:22 -04:00
parent a88cdb9693
commit c436c6af9d
1 changed files with 9 additions and 0 deletions

View File

@ -73,6 +73,15 @@ function mod:OnEnable()
-- louder LFD sound
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
-- Slash Commands --------------------------------------------------------------