Skip to content

Commit

Permalink
another tweak for false debugs, use restart for restarting timers
Browse files Browse the repository at this point in the history
  • Loading branch information
MysticalOS committed May 26, 2024
1 parent 4cf1e5b commit d6c3dbd
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions DBM-Raids-MoP/SiegeOfOrgrimmar/ShaofPride.lua
Original file line number Diff line number Diff line change
Expand Up @@ -150,16 +150,16 @@ function mod:SPELL_CAST_SUCCESS(args)
self.vb.woundCount = 0
bpSpecWarnFired = false
--Since we register this event anyways for bursting, might as well start cd bars here instead
timerMarkCD:Start(10.5)
timerSelfReflectionCD:Start()
timerCorruptedPrisonCD:Start()
timerManifestationCD:Start()
timerSwellingPrideCD:Start(nil, self.vb.swellingCount + 1)
timerMarkCD:Restart(10.5)
timerSelfReflectionCD:Restart()
timerCorruptedPrisonCD:Restart()
timerManifestationCD:Restart()
timerSwellingPrideCD:Restart(nil, self.vb.swellingCount + 1)
if not self:IsDifficulty("lfr25") then
timerWoundedPrideCD:Start(11)
timerWoundedPrideCD:Restart(11)
end
if self:IsMythic() then
timerBanishmentCD:Start()
timerBanishmentCD:Restart()
end
--This is done here because a lot can change during a cast, and we need to know players energy when cast ends, i.e. this event
for uId in DBM:GetGroupMembers() do
Expand Down

0 comments on commit d6c3dbd

Please sign in to comment.