WoWInterface SVN ArchWizard

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 21 to Rev 22
    Reverse comparison

Rev 21 → Rev 22

trunk/ArchWizard/core.lua
83,10 → 83,11
GameTooltip:AddLine(childName)
GameTooltip:AddLine("")
for k,v in pairs(raceCurrencies) do
if(v['show'] and v['required'] > 0) then
if((v['show'] or IsShiftKeyDown()) and v['required'] > 0) then
GameTooltip:AddDoubleLine(addon['colorize'](format("%s (%s/%s)",k,GetItemCount(v['id']),v['keystones'] or 0),v['quality']==1 and "6677ff" or "ffffff"),addon['colorize'](format("%s/%s",v['count'],v['required']),v['count'] >= v['required'] and "00ff00" or ("ffffff")))
end
end
GameTooltip:AddLine(addon['colorize']("Press SHIFT for more info","00ff00"))
end
 
local function OnClick(self, button)