diff options
author | megamage <none@none> | 2009-06-07 23:32:35 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-06-07 23:32:35 -0500 |
commit | a328728cb85c1166db4efa46d71d96d7c16d0ee3 (patch) | |
tree | d8e972711d3be06df13b2c611c58e2b222741654 /src/game/Level3.cpp | |
parent | 5e7d184734b24efdfc1cba6ec6b403015eeeaf37 (diff) |
*Implement spell aura 177.
--HG--
branch : trunk
Diffstat (limited to 'src/game/Level3.cpp')
-rw-r--r-- | src/game/Level3.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/game/Level3.cpp b/src/game/Level3.cpp index 06338bbe233..fe8cca2da4b 100644 --- a/src/game/Level3.cpp +++ b/src/game/Level3.cpp @@ -7472,9 +7472,7 @@ bool ChatHandler::HandleUnPossessCommand(const char* args) Unit* pUnit = getSelectedUnit(); if(!pUnit) pUnit = m_session->GetPlayer(); - pUnit->RemoveAurasByType(SPELL_AURA_MOD_CHARM); - pUnit->RemoveAurasByType(SPELL_AURA_MOD_POSSESS_PET); - pUnit->RemoveAurasByType(SPELL_AURA_MOD_POSSESS); + pUnit->RemoveCharmAuras(); return true; } |