Skip to content

Commit

Permalink
fixed a bug where adds got double announced on thekal
Browse files Browse the repository at this point in the history
  • Loading branch information
MysticalOS committed Nov 9, 2023
1 parent c0d7ca2 commit cd0f4de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DBM-Raids-Vanilla/VanillaZG/Thekal.lua
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function mod:SPELL_AURA_REMOVED(args)
end

function mod:SPELL_SUMMON(args)
if args:IsSpell(24183) then
if args:IsSpell(24183) and self:AntiSpam(3, 1) then
warnAdds:Show()
end
end
Expand All @@ -90,7 +90,7 @@ end
function mod:OnSync(msg)
if not self:IsInCombat() then return end
if msg == "PriestDied" then
if self:AntiSpam(20, 1) then
if self:AntiSpam(20, 2) then
warnSimulKill:Show()
timerSimulKill:Start()
end
Expand Down

0 comments on commit cd0f4de

Please sign in to comment.