Fixed crash issue with death grip from previous commit.

*Tested on both Windows and Linux system.
This commit is contained in:
talamortis
2018-07-22 12:08:52 +01:00
parent 295f461fdd
commit 4e27109cea
+3 -3
View File
@@ -1563,7 +1563,7 @@ class spell_dk_death_grip : public SpellScriptLoader
{
Creature* targetCreature = GetHitCreature();
switch (entry = targetCreature->GetEntry())
switch (targetCreature->GetEntry())
{
//Alliance Faction Champions
case 34461:
@@ -1596,10 +1596,10 @@ class spell_dk_death_grip : public SpellScriptLoader
case 34455:
case 34450:
case 34453:
break;
default:
return entry;
break;
}
return 0;
}
void HandleBaseDummy(SpellEffIndex /*effIndex*/)