From 8a2788d8354c0fd6c8ecf32bc6d194bc0d08a448 Mon Sep 17 00:00:00 2001 From: Flamanis Date: Wed, 11 Jan 2023 05:07:26 -0600 Subject: [PATCH] Ignore Phial of corrupting rage when deciding to start a combat. --- core/parser.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/parser.lua b/core/parser.lua index 54be3976..7aaa09f4 100755 --- a/core/parser.lua +++ b/core/parser.lua @@ -1059,7 +1059,8 @@ --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 - if (spellid == 111400 or spellid == 368637) then + --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