GCD doesn't function in Classic

This commit is contained in:
Parnic
2019-09-19 22:09:16 -05:00
parent 4fbb70ebc0
commit 5c66970d8f
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
v1.12.5:
- (Classic) Disabled GCD module as the Classic client doesn't support tracking GCD.
- (Classic) Packaged new LibDogTag-Unit to pick up Happiness tag fixes.
v1.12.4:
- Fixed spellcast failure events on the castbar not being handled properly. (thanks, Fulzamoth!)

View File

@ -291,4 +291,6 @@ function GlobalCoolDown.prototype:GetSpellId()
end
-- Load us up
IceHUD.GlobalCoolDown = GlobalCoolDown:new()
if not IceHUD.WowClassic then
IceHUD.GlobalCoolDown = GlobalCoolDown:new()
end