Skip to content

Commit

Permalink
Fix missing stops on death
Browse files Browse the repository at this point in the history
  • Loading branch information
MysticalOS committed Oct 22, 2024
1 parent 56472ef commit bd17082
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions DBM-Raids-Vanilla/BlackrockDepths/GolemLordArgelmach.lua
Original file line number Diff line number Diff line change
Expand Up @@ -273,13 +273,18 @@ mod.SPELL_PERIODIC_MISSED = mod.SPELL_PERIODIC_DAMAGE
function mod:UNIT_DIED(args)
local cid = self:GetCIDFromGUID(args.destGUID)
if cid == 230219 then--Arcanotron Mk. II

timerArcaneOverchargeCD:Stop()
timerPowerGeneratorSoakCD:Stop()
elseif cid == 230216 then--Magmatron Mk. II

timerFlamethrowerCD:Stop()
timerIncinerationCD:Stop()
elseif cid == 230217 then--Toxitron Mk. II

timerChemicalBombCD:Stop()
timerPoisonMistCD:Stop()
elseif cid == 230218 then--Electron Mk. II

timerChainLightningCD:Stop()
timerLiveWireCD:Stop()
timerLethalAttractionCD:Stop()
end
end

Expand Down

0 comments on commit bd17082

Please sign in to comment.