Only use combo modules in Classic for Rogues and Druids

This commit is contained in:
Parnic
2019-09-22 14:24:02 -05:00
parent 5c66970d8f
commit b5b5c31791
2 changed files with 8 additions and 2 deletions

View File

@ -553,4 +553,7 @@ end
-- Load us up
IceHUD.ComboPoints = ComboPoints:new()
local _, class = UnitClass("player")
if not IceHUD.WowClassic or class == "ROGUE" or class == "DRUID" then
IceHUD.ComboPoints = ComboPoints:new()
end

View File

@ -135,4 +135,7 @@ function ComboPointsBar.prototype:Update()
self:UpdateComboPoints()
end
IceHUD.ComboPointsBar = ComboPointsBar:new()
local _, class = UnitClass("player")
if not IceHUD.WowClassic or class == "ROGUE" or class == "DRUID" then
IceHUD.ComboPointsBar = ComboPointsBar:new()
end