Skip to content

Commit

Permalink
fix debuff size issue due to boss aura flag (fixes #622)
Browse files Browse the repository at this point in the history
  • Loading branch information
jordonwow committed Mar 18, 2023
1 parent e5b95e5 commit 56f0277
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions BigDebuffs.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1828,6 +1828,10 @@ if WOW_PROJECT_ID == WOW_PROJECT_MAINLINE then
local friendlySmokeBomb = aura.spellId == 212183 and reaction > 4
local isDispellable = self:IsDispellable(unitId, aura.dispelName);
local size = self:GetDebuffSize(aura.spellId, isDispellable)
-- make sure certain debuffs aren't dispalyed as boss auras
if size then
aura.isBossAura = false
end
if size and not friendlySmokeBomb then
tinsert(debuffs, { aura, size, self:GetDebuffPriority(aura.spellId) })
elseif self.db.profile.raidFrames.redirectBliz then
Expand Down

0 comments on commit 56f0277

Please sign in to comment.