From f9670625291f3ca09d99e40329e87eba81520f4f Mon Sep 17 00:00:00 2001 From: Hondacrx Date: Mon, 11 Aug 2025 19:53:15 -0400 Subject: [PATCH] Core/Spells: Fire OnEffectSuccessfulDispel for SPELL_EFFECT_DISPEL_MECHANIC Port From (https://github.com/TrinityCore/TrinityCore/commit/9f401946d3b2c246469b5b2702a5d08c0472b4fa) --- Source/Game/Spells/SpellEffects.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Game/Spells/SpellEffects.cs b/Source/Game/Spells/SpellEffects.cs index 533351897..503440e70 100644 --- a/Source/Game/Spells/SpellEffects.cs +++ b/Source/Game/Spells/SpellEffects.cs @@ -3894,6 +3894,8 @@ namespace Game.Spells dispel_list.RemoveAt(0); } + CallScriptSuccessfulDispel(effectInfo.EffectIndex); + m_UniqueTargetInfo.Find(p => p.TargetGUID == unitTarget.GetGUID()).ProcHitMask |= ProcFlagsHit.Dispel; }