diff options
author | joschiwald <joschiwald.trinity@gmail.com> | 2015-08-17 23:27:42 +0200 |
---|---|---|
committer | Carbenium <carbenium@outlook.com> | 2015-09-24 22:35:33 +0200 |
commit | a3732aea4898404f877b16dd392b65cdca550da3 (patch) | |
tree | f70f2891addda854c17b7c7520cdcd670cee91cc /src | |
parent | 0fad953852b0828680030a4bdabffe211f0d9656 (diff) |
Scripts/Ulduar: fixed hodir kill credit
Closes #15303
(cherry picked from commit 30fc4f9f63b7a0ce01e5aad4667902991b70e298)
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Northrend/Ulduar/Ulduar/boss_hodir.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_hodir.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_hodir.cpp index 098e7aa34be..5b04e4bb0f7 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_hodir.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_hodir.cpp @@ -396,11 +396,11 @@ class boss_hodir : public CreatureScript me->SetControlled(true, UNIT_STATE_STUNNED); me->CombatStop(true); + DoCastAOE(SPELL_KILL_CREDIT); /// need to be cast before changing boss faction + /// spell will target enemies only me->setFaction(35); me->DespawnOrUnsummon(10000); - DoCastAOE(SPELL_KILL_CREDIT); - _JustDied(); } } |