From 4e60845f43c6397e147e287da88c7f680736dff7 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Sat, 24 Jun 2023 09:17:12 -0400 Subject: [PATCH] Scripts/DK: Fix Festering Strike Port From (https://github.com/TrinityCore/TrinityCore/commit/ad0007783b0f375700b54f411c9753bfdf91c35b) --- Source/Scripts/Spells/DeathKnight.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Scripts/Spells/DeathKnight.cs b/Source/Scripts/Spells/DeathKnight.cs index 532b9266d..e87a1a9d7 100644 --- a/Source/Scripts/Spells/DeathKnight.cs +++ b/Source/Scripts/Spells/DeathKnight.cs @@ -510,7 +510,7 @@ namespace Scripts.Spells.DeathKnight public override void Register() { - OnEffectHitTarget.Add(new EffectHandler(HandleScriptEffect, 2, SpellEffectName.Dummy)); + OnEffectHitTarget.Add(new EffectHandler(HandleScriptEffect, 1, SpellEffectName.Dummy)); } }