Skip to content

Commit

Permalink
Merge pull request #431 from Flamanis/IgnoreDFPhialCombatStart
Browse files Browse the repository at this point in the history
Ignore Phial of corrupting rage when deciding to start a combat.
  • Loading branch information
Tercioo authored Jan 11, 2023
2 parents 6c17d29 + 0149877 commit d728c07
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions core/parser.lua
Original file line number Diff line number Diff line change
Expand Up @@ -998,8 +998,9 @@
if (token == "SPELL_PERIODIC_DAMAGE" and sourceName == _detalhes.playername) then
--ignora burning rush se o jogador estiver fora de combate
--111400 warlock's burning rush
--368637 is buff from trinket "Scars of Fraternal Strife" which make the player bleed even out-of-combat (good to deprecate)
if (spellId == 111400 or spellId == 368637) then
--368637 is buff from trinket "Scars of Fraternal Strife" which make the player bleed even out-of-combat
--371070 is "Iced Phial of Corrupting Rage" effect triggers randomly, even out-of-combat
if (spellId == 111400 or spellId == 371070 or spellId == 368637) then
return
end

Expand Down

0 comments on commit d728c07

Please sign in to comment.