diff options
author | megamage <none@none> | 2009-04-29 00:31:03 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-04-29 00:31:03 -0500 |
commit | 295b634ca691ff87e8451593e277211fcb02c929 (patch) | |
tree | 75fa8ebd556019305b031531e2fa9b3937e79553 /src/game/SpellAuras.cpp | |
parent | de11b9e901d1d1caa0634fad541f08f11c5781af (diff) |
[7731] Some code cleanups, warrning fixes. Author: VladimirMangos
--HG--
branch : trunk
Diffstat (limited to 'src/game/SpellAuras.cpp')
-rw-r--r-- | src/game/SpellAuras.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 430010af77d..a34ab4d8b1e 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -3049,18 +3049,16 @@ void AuraEffect::HandleAuraModShapeshift(bool apply, bool Real) case FORM_BEAR: case FORM_DIREBEAR: case FORM_CAT: - { if(AuraEffect* dummy = m_target->GetDummyAura(37315) ) m_target->CastSpell(m_target,37316,true,NULL,dummy); break; - } // Nordrassil Regalia - bonus case FORM_MOONKIN: - { if(AuraEffect* dummy = m_target->GetDummyAura(37324) ) m_target->CastSpell(m_target,37325,true,NULL,dummy); break; - } + default: + break; } } |