diff options
author | w1sht0l1v3 <w1sht0l1v3@gmail.com> | 2013-06-09 22:14:20 +0300 |
---|---|---|
committer | w1sht0l1v3 <w1sht0l1v3@gmail.com> | 2013-06-09 22:14:20 +0300 |
commit | 5f33bfb9254f490efc2cc53285f686644b102928 (patch) | |
tree | 5931c5648bcbcb9e85b95e4e90a089e9140b7d21 /src | |
parent | 86811d5d66e18b837eba6c488910c552d88bd32b (diff) |
Core/Scripts: Fix Drake Hunt, closes #2005
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Northrend/zone_borean_tundra.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/server/scripts/Northrend/zone_borean_tundra.cpp b/src/server/scripts/Northrend/zone_borean_tundra.cpp index 6fb1079d94c..16965b83d25 100644 --- a/src/server/scripts/Northrend/zone_borean_tundra.cpp +++ b/src/server/scripts/Northrend/zone_borean_tundra.cpp @@ -820,7 +820,6 @@ public: void Reset() { WithRedDragonBlood = false; - HarpoonerGUID = 0; } void EnterCombat(Unit* who) @@ -879,6 +878,12 @@ public: } } + if ((me->getFaction() == 35) && (!me->HasAura(SPELL_SUBDUED))) + { + HarpoonerGUID = 0; + me->DisappearAndDie(); + } + if (!UpdateVictim()) return; |