diff options
| author | iDenyDeX <deny7@mail.ru> | 2014-09-22 20:52:22 +0200 | 
|---|---|---|
| committer | jackpoz <giacomopoz@gmail.com> | 2014-09-22 21:01:26 +0200 | 
| commit | 9c9556d75c9856c42e1340f1f5ef77e6180076ad (patch) | |
| tree | 9a3842e85e23334d35ab23a5c895dbbf361f8e0f /src | |
| parent | e77f503336a420dcb8340dc5f2f6c76fa0b54ad6 (diff) | |
Core/Spell - Fix Remove Aura "The Eye of Acherus"
Fixed remove aura "The Eye of Acherus" http://www.wowhead.com/spell=51852 after use "Recall Eye of Acherus" http://www.wowhead.com/spell=52694 .
Earlier, after using the player remained under the aura.
Diffstat (limited to 'src')
| -rw-r--r-- | src/server/scripts/Spells/spell_quest.cpp | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/src/server/scripts/Spells/spell_quest.cpp b/src/server/scripts/Spells/spell_quest.cpp index 9c65567fe7f..a59594935b5 100644 --- a/src/server/scripts/Spells/spell_quest.cpp +++ b/src/server/scripts/Spells/spell_quest.cpp @@ -2101,6 +2101,11 @@ class spell_q12641_death_comes_from_on_high : public SpellScriptLoader  };  // 52694 - Recall Eye of Acherus +enum Recall_Eye_of_Acherus +{ +    THE_EYE_OF_ACHERUS = 51852 +}; +  class spell_q12641_recall_eye_of_acherus : public SpellScriptLoader  {      public: @@ -2116,6 +2121,7 @@ class spell_q12641_recall_eye_of_acherus : public SpellScriptLoader                  {                      player->StopCastingCharm();                      player->StopCastingBindSight(); +                    player->RemoveAura(THE_EYE_OF_ACHERUS);                  }              }  | 
