diff options
| author | megamage <none@none> | 2009-04-20 09:47:02 -0500 | 
|---|---|---|
| committer | megamage <none@none> | 2009-04-20 09:47:02 -0500 | 
| commit | 45e61dd4d32f6c66a6ed407107b80edd0e9d598b (patch) | |
| tree | 0dce462a466f06e3842435aaf4af2e06d6d40959 | |
| parent | f90706f5af52696764f3d1a676dd1c4c2c22c52a (diff) | |
*Fix a crash caused by stealth aura remove itself.
--HG--
branch : trunk
| -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 eeb1785f5c3..663fa7c8125 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -3431,7 +3431,7 @@ void Aura::HandleAuraModDecreaseSpeed(bool /*apply*/, bool Real)      if(!Real)          return; -	m_target->RemoveSpellsCausingAura(SPELL_AURA_MOD_STEALTH); +	//m_target->RemoveSpellsCausingAura(SPELL_AURA_MOD_STEALTH);      m_target->UpdateSpeed(MOVE_RUN, true);      m_target->UpdateSpeed(MOVE_SWIM, true);      m_target->UpdateSpeed(MOVE_FLIGHT, true);  | 
