- added rune stuff for DK's in wotlk

- fixed args returned from UnitBuff in wotlk
- added default DK spell for gcd module
This commit is contained in:
Parnic
2008-07-26 19:14:47 +00:00
parent 7e42238219
commit 76f4e1b020
5 changed files with 56 additions and 14 deletions

View File

@ -39,6 +39,13 @@ function TargetMana.prototype:Enable(core)
self:RegisterEvent("UNIT_MAXFOCUS", "Update")
self:RegisterEvent("UNIT_AURA", "Update")
self:RegisterEvent("UNIT_FLAGS", "Update")
-- DK rune stuff
if IceHUD.WowVer >= 30000 then
self:RegisterEvent("UNIT_RUNIC_POWER", "Update")
self:RegisterEvent("RUNE_TYPE_UPDATE", "Update")
self:RegisterEvent("RUNE_POWER_UPDATE", "Update")
self:RegisterEvent("RUNE_REGEN_UPDATE", "Update")
end
self:Update("target")
end