diff options
author | megamage <none@none> | 2009-01-02 11:20:00 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-01-02 11:20:00 -0600 |
commit | a57ae23ece7773cd95a8f2b0156b89f494cbb819 (patch) | |
tree | 39f2fe6b940904595252b87643ec4e84dd9a3966 /src/game/SpellAuras.cpp | |
parent | 7fe148d52e23ac78c7366230e60689e442117a98 (diff) |
*Mangos [7007] Fix: Using enum value instead of numeric constant. By: ApoC.
--HG--
branch : trunk
Diffstat (limited to 'src/game/SpellAuras.cpp')
-rw-r--r-- | src/game/SpellAuras.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 282fc4bc095..2c5003b5673 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -4536,7 +4536,7 @@ void Aura::HandleModPowerRegen(bool apply, bool Real) // drinking else if( GetId() == 20577 ) { // cannibalize anim - m_target->HandleEmoteCommand(398); + m_target->HandleEmoteCommand(EMOTE_STATE_CANNIBALIZE); } // Warrior talent, gain 1 rage every 3 seconds while in combat |