WoWInterface SVN Broker_Equipment

Compare Revisions

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

Rev 20 → Rev 21

Broker_Equipment/Broker_Equipment.lua
158,10 → 158,14
GearManagerToggleButton:Show()
end
 
 
hooksecurefunc('EquipmentManager_EquipSet', function(funcName)
for index = 1, GetNumEquipmentSets() do
local name, icon = GetEquipmentSetInfo(index)
return name == funcName and updateInfo(name, icon)
if(name == funcName) then
updateInfo(name, icon)
break
end
end
end)