Skip to content

Commit

Permalink
throttle shadow. prison
Browse files Browse the repository at this point in the history
  • Loading branch information
MysticalOS committed Nov 2, 2023
1 parent 006845a commit c58847d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion DBM-Raids-WoTLK/Icecrown/TheCrimsonHall/BPCouncil.lua
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,8 @@ function mod:SPELL_AURA_APPLIED(args)
elseif args.spellId == 72999 and not self:IsTrivial() then --Shadow Prison (hard mode)
if args:IsPlayer() then
timerShadowPrison:Start()
if (args.amount or 1) >= 6 then --Placeholder right now, might use a different value
local amount = args.amount or 1
if (amount % 3 == 0) and >= 6 then --Placeholder right now, might use a different value
specWarnShadowPrison:Show(args.amount)
specWarnShadowPrison:Play("stackhigh")
end
Expand Down

0 comments on commit c58847d

Please sign in to comment.