Skip to content

Commit

Permalink
NerubarPalace/Kyveza: Fix orb debuff timer and only show the bar on h…
Browse files Browse the repository at this point in the history
…eroic or higher
  • Loading branch information
Justw8 committed Oct 15, 2024
1 parent 60a38b6 commit 56a814c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions NerubarPalace/Kyveza.lua
Original file line number Diff line number Diff line change
Expand Up @@ -129,15 +129,15 @@ end
do
local prev = 0
function mod:QueensbaneApplied(args)
if args.time - prev > 2 then
if not self:Easy() and args.time - prev > 2 then
prev = args.time
self:Bar(439409, 10, CL.orbs) -- Dark Viscera
self:Bar(439409, 9, CL.orbs) -- Dark Viscera
end
if self:Me(args.destGUID) then
self:PersonalMessage(args.spellId)
self:PlaySound(args.spellId, "alarm")
if not self:Easy() then
self:SayCountdown(args.spellId, 10)
self:SayCountdown(args.spellId, 9)
end
end
end
Expand Down

0 comments on commit 56a814c

Please sign in to comment.