Skip to content

Commit

Permalink
Amirdrassil/Gnarlroot: Fix Shadowflame Cleave bar
Browse files Browse the repository at this point in the history
  • Loading branch information
ntowle committed Nov 19, 2023
1 parent 1e4efef commit 8a9db4c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Amirdrassil/Gnarlroot.lua
Original file line number Diff line number Diff line change
Expand Up @@ -240,15 +240,15 @@ function mod:ShadowflameCleave(args)
local cd
if self:Mythic() then
local timer = { 3.0, 23.0, 28.0, 22.1, 0 }
cd = timer[torturedScreamCount]
cd = timer[shadowflameCleaveCount]
elseif self:Easy() then
local timer = { 3.3, 25.5, 25.6, 26.7, 0 }
cd = timer[torturedScreamCount]
cd = timer[shadowflameCleaveCount]
else
local timer = { 3.0, 23.0, 23.0, 24.0, 0 }
cd = timer[torturedScreamCount]
cd = timer[shadowflameCleaveCount]
end
self:CDBar(args.spellId, cd, CL.count:format(args.spellName, torturedScreamCount))
self:CDBar(args.spellId, cd, CL.count:format(L.shadowflame_cleave, shadowflameCleaveCount))
end

-- Stage Two: Agonizing Growth
Expand Down

0 comments on commit 8a9db4c

Please sign in to comment.