diff options
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);                  }              }  | 
