Death Grip should now interrupt the target

closes #637
This commit is contained in:
talamortis
2017-11-20 14:08:14 +00:00
parent 546c547e7b
commit a897356fa3

View File

@@ -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);
}