- made ComboPoints module only load for druids and rogues

- added SunderCount module that behaves exactly like combo points, only for sunder debuffs on the target
This commit is contained in:
Parnic
2008-02-10 22:07:46 +00:00
parent 81b8bfd219
commit 4e83db53d3
3 changed files with 266 additions and 1 deletions

View File

@ -241,4 +241,7 @@ end
-- Load us up
IceHUD.ComboPoints = ComboPoints:new()
local _, unitClass = UnitClass("player")
if (unitClass == "DRUID" or unitClass == "ROGUE") then
IceHUD.ComboPoints = ComboPoints:new()
end