diff options
author | p0wer <none@none> | 2009-12-20 17:38:23 -0600 |
---|---|---|
committer | p0wer <none@none> | 2009-12-20 17:38:23 -0600 |
commit | dcbcf5e016cad18730d435350ee343ebe57a5939 (patch) | |
tree | e9b65ef6c4f8603386c51fa805a2f5b310ee781c /src | |
parent | 6c718a9ef7cd33a54abbac40aed39400324c6a2b (diff) |
Fix warning that became present in rev6655.
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/SpellEffects.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 29bc42b922e..66921aaa2f5 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -534,7 +534,7 @@ void Spell::SpellDamageSchoolDmg(uint32 effect_idx) m_caster->CastCustomSpell(m_caster, 32409, &back_damage, 0, 0, true); } // Mind Blast - applies Mind Trauma if: - else if (m_spellInfo->SpellFamilyFlags & UI64LIT(0x2000)) + else if (m_spellInfo->SpellFamilyFlags & 0x2000) { // We are in Shadow Form if (m_caster->m_form == FORM_SHADOW) |