diff --git a/changelog.txt b/changelog.txt index 6eb8b80..3142b85 100644 --- a/changelog.txt +++ b/changelog.txt @@ -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!) diff --git a/modules/GlobalCoolDown.lua b/modules/GlobalCoolDown.lua index 6e3222d..cb8ce59 100644 --- a/modules/GlobalCoolDown.lua +++ b/modules/GlobalCoolDown.lua @@ -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