From a897356fa3b8e626e949d5b45ac476e0775c0a57 Mon Sep 17 00:00:00 2001 From: talamortis Date: Mon, 20 Nov 2017 14:08:14 +0000 Subject: [PATCH] Death Grip should now interrupt the target closes #637 --- src/scripts/Spells/spell_dk.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/scripts/Spells/spell_dk.cpp b/src/scripts/Spells/spell_dk.cpp index fbbbbbe15..2ad8c4bd1 100644 --- a/src/scripts/Spells/spell_dk.cpp +++ b/src/scripts/Spells/spell_dk.cpp @@ -1562,7 +1562,10 @@ class spell_dk_death_grip : public SpellScriptLoader Unit* baseTarget = GetExplTargetUnit(); if (caster != target) + { caster->CastSpell(target, 49560, true); + target->InterruptNonMeleeSpells(true); + } else baseTarget->CastSpell(caster, 49560, true); }