auras only track if same auratype (fix mindcontrol bug)

This commit is contained in:
Sumsebrum 2022-07-31 06:06:10 +02:00
parent 7c2cd5092e
commit fccc31b6f5

View File

@ -542,7 +542,9 @@ function Auras:AURA_GAIN(unit, auraType, spellID, spellName, icon, duration, exp
return return
end end
-- don't use spellId from combatlog, in case of different spellrank -- don't use spellId from combatlog, in case of different spellrank
if not Gladdy.db.auraListDefault[tostring(self.auras[spellName].spellID)] or not Gladdy.db.auraListDefault[tostring(self.auras[spellName].spellID)].enabled then if not Gladdy.db.auraListDefault[tostring(self.auras[spellName].spellID)]
or not Gladdy.db.auraListDefault[tostring(self.auras[spellName].spellID)].enabled
or Gladdy.db.auraListDefault[tostring(self.auras[spellName].spellID)].track ~= auraType then
return return
end end