diff --git a/IceHUD.lua b/IceHUD.lua index f1f58c2..b01b3b5 100644 --- a/IceHUD.lua +++ b/IceHUD.lua @@ -49,8 +49,8 @@ IceHUD.EventExistsUnitDynamicFlags = IceHUD.WowMain and IceHUD.WowVer < 80000 IceHUD.EventExistsUnitHealthFrequent = not IceHUD.WowMain or (IceHUD.WowVer >= 40000 and IceHUD.WowVer < 90000) IceHUD.PerPowerEventsExist = IceHUD.WowMain and IceHUD.WowVer < 40000 IceHUD.PerTargetComboPoints = IceHUD.WowVer < 60000 -IceHUD.CanTrackOtherUnitBuffs = not IceHUD.WowClassic -IceHUD.CanTrackGCD = not IceHUD.WowClassic +IceHUD.CanTrackOtherUnitBuffs = not IceHUD.WowClassic or IceHUD.WowVer >= 11500 +IceHUD.CanTrackGCD = not IceHUD.WowClassic or IceHUD.WowVer >= 11500 IceHUD.GetSpellInfoReturnsFunnel = IceHUD.WowMain and IceHUD.WowVer < 60000 IceHUD.CanHookDestroyTotem = IceHUD.WowClassic or IceHUD.WowClassicBC or IceHUD.WowClassicWrath IceHUD.ShouldUpdateTargetHealthEveryTick = (IceHUD.WowClassic or IceHUD.WowClassicBC) and GetCVarBool("predictedHealth") diff --git a/changelog.md b/changelog.md index 1fbcc15..9fbebb0 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +v1.14.32: + +- Enable GlobalCoolDown module in Classic Era 1.15.0+ +- Enable tracking non-player buffs/debuffs in Classic Era 1.15.0+ + v1.14.31: - Fix nil concatenation error (wowace ticket #351) diff --git a/modules/GlobalCoolDown.lua b/modules/GlobalCoolDown.lua index ab330a8..cb6d6eb 100644 --- a/modules/GlobalCoolDown.lua +++ b/modules/GlobalCoolDown.lua @@ -289,6 +289,12 @@ function GlobalCoolDown.prototype:GetSpellId() if not GetSpellInfo(defaultSpells["PALADIN"]) then defaultSpells["PALADIN"] = 635 end + if not GetSpellInfo(defaultSpells["MAGE"]) then + defaultSpells["MAGE"] = 133 + end + if not GetSpellInfo(defaultSpells["WARRIOR"]) then + defaultSpells["WARRIOR"] = 6673 + end local _, unitClass = UnitClass("player") return defaultSpells[unitClass] diff --git a/this_version.md b/this_version.md index dd55f78..3d7f181 100644 --- a/this_version.md +++ b/this_version.md @@ -1,5 +1,10 @@ # Changelog +v1.14.32: + +- Enable GlobalCoolDown module in Classic Era 1.15.0+ +- Enable tracking non-player buffs/debuffs in Classic Era 1.15.0+ + v1.14.31: - Fix nil concatenation error (wowace ticket #351)