Skip to content

Commit

Permalink
Don't redo buffs while mounted or in combat or flying. fixes stagger …
Browse files Browse the repository at this point in the history
…while gathering for outdoors raid/boss
  • Loading branch information
ynazar1 committed Nov 30, 2024
1 parent 265b098 commit c452767
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion SmartBuff.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1026,7 +1026,8 @@ end

-- Set the buff array
function SMARTBUFF_SetBuffs()
if (InCombatLockdown()) then return end
-- Don't init things when mounted or in combat
if (InCombatLockdown() or IsMounted() or IsFlying()) then return end
if (B == nil) then return; end

local n = 1;
Expand Down

0 comments on commit c452767

Please sign in to comment.