mirror of
https://github.com/parnic/ice-hud.git
synced 2025-06-16 06:40:13 -05:00
Enable GCD, target target buffs in Classic 1.15+
This commit is contained in:
@ -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.EventExistsUnitHealthFrequent = not IceHUD.WowMain or (IceHUD.WowVer >= 40000 and IceHUD.WowVer < 90000)
|
||||||
IceHUD.PerPowerEventsExist = IceHUD.WowMain and IceHUD.WowVer < 40000
|
IceHUD.PerPowerEventsExist = IceHUD.WowMain and IceHUD.WowVer < 40000
|
||||||
IceHUD.PerTargetComboPoints = IceHUD.WowVer < 60000
|
IceHUD.PerTargetComboPoints = IceHUD.WowVer < 60000
|
||||||
IceHUD.CanTrackOtherUnitBuffs = not IceHUD.WowClassic
|
IceHUD.CanTrackOtherUnitBuffs = not IceHUD.WowClassic or IceHUD.WowVer >= 11500
|
||||||
IceHUD.CanTrackGCD = not IceHUD.WowClassic
|
IceHUD.CanTrackGCD = not IceHUD.WowClassic or IceHUD.WowVer >= 11500
|
||||||
IceHUD.GetSpellInfoReturnsFunnel = IceHUD.WowMain and IceHUD.WowVer < 60000
|
IceHUD.GetSpellInfoReturnsFunnel = IceHUD.WowMain and IceHUD.WowVer < 60000
|
||||||
IceHUD.CanHookDestroyTotem = IceHUD.WowClassic or IceHUD.WowClassicBC or IceHUD.WowClassicWrath
|
IceHUD.CanHookDestroyTotem = IceHUD.WowClassic or IceHUD.WowClassicBC or IceHUD.WowClassicWrath
|
||||||
IceHUD.ShouldUpdateTargetHealthEveryTick = (IceHUD.WowClassic or IceHUD.WowClassicBC) and GetCVarBool("predictedHealth")
|
IceHUD.ShouldUpdateTargetHealthEveryTick = (IceHUD.WowClassic or IceHUD.WowClassicBC) and GetCVarBool("predictedHealth")
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# 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:
|
v1.14.31:
|
||||||
|
|
||||||
- Fix nil concatenation error (wowace ticket #351)
|
- Fix nil concatenation error (wowace ticket #351)
|
||||||
|
@ -289,6 +289,12 @@ function GlobalCoolDown.prototype:GetSpellId()
|
|||||||
if not GetSpellInfo(defaultSpells["PALADIN"]) then
|
if not GetSpellInfo(defaultSpells["PALADIN"]) then
|
||||||
defaultSpells["PALADIN"] = 635
|
defaultSpells["PALADIN"] = 635
|
||||||
end
|
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")
|
local _, unitClass = UnitClass("player")
|
||||||
return defaultSpells[unitClass]
|
return defaultSpells[unitClass]
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# 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:
|
v1.14.31:
|
||||||
|
|
||||||
- Fix nil concatenation error (wowace ticket #351)
|
- Fix nil concatenation error (wowace ticket #351)
|
||||||
|
Reference in New Issue
Block a user