diff options
author | Kudlaty <none@none> | 2009-11-29 19:51:07 +0100 |
---|---|---|
committer | Kudlaty <none@none> | 2009-11-29 19:51:07 +0100 |
commit | ca7a2e64176ed0345a0040982018a867479680fc (patch) | |
tree | b341361955145d90fd902ef37e3e95f73682abff /src | |
parent | 49fffe9da755f5f73422e44b25ab947bf16d0817 (diff) |
Fix crash in script for quest Trolls is gone crazy
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/bindings/scripts/scripts/northrend/zuldrak.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bindings/scripts/scripts/northrend/zuldrak.cpp b/src/bindings/scripts/scripts/northrend/zuldrak.cpp index 28407adfc65..148e7fd5ac8 100644 --- a/src/bindings/scripts/scripts/northrend/zuldrak.cpp +++ b/src/bindings/scripts/scripts/northrend/zuldrak.cpp @@ -158,7 +158,7 @@ struct TRINITY_DLL_DECL npc_captured_rageclawAI : public ScriptedAI return; if (DespawnTimer <= uiDiff) - m_creature->setDeathState(JUST_DIED); + m_creature->DisappearAndDie(); else DespawnTimer -= uiDiff; } }; |