From f33fb94cd8072b4bdaf3f14848f113673cfdb7cd Mon Sep 17 00:00:00 2001 From: shagu Date: Sun, 25 Sep 2016 19:38:40 +0200 Subject: [PATCH] castbar: do not show afflicted spells as mob cast --- modules/castbar.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/castbar.lua b/modules/castbar.lua index 42cab05d..c4bb5e48 100644 --- a/modules/castbar.lua +++ b/modules/castbar.lua @@ -267,11 +267,11 @@ pfUI:RegisterModule("castbar", function () pfUI.castbar.target:Action(mob, spell, "gains") return end - for mob, spell in string.gfind(arg1, pfLocaleSpellEvents[pfUI.cache["locale"]]['SPELL_AFFLICTED']) do - pfUI.castbar.target:Action(mob, spell, "afflicted") - return - end -- this part will be used for interruption of spells + --for mob, spell in string.gfind(arg1, pfLocaleSpellEvents[pfUI.cache["locale"]]['SPELL_AFFLICTED']) do + -- pfUI.castbar.target:Action(mob, spell, "afflicted") + -- return + --end --for spell, mob in string.gfind(arg1, pfLocaleSpellEvents[pfUI.cache["locale"]]['SPELL_HIT']) do -- -- you hit mob with XX -- -- pfUI.castbar.target:Action(mob, spell, "hit")