From 70c2f2201a55b233e1d9415b0b95c2064b4ebc5e Mon Sep 17 00:00:00 2001 From: DiSlord Date: Sat, 20 Dec 2008 04:32:38 +0300 Subject: [PATCH] Fix mask typo from last commit --- src/game/SpellEffects.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index eb3d13556..346eb6acf 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -382,7 +382,7 @@ void Spell::EffectSchoolDMG(uint32 effect_idx) else if(m_spellInfo->SpellFamilyFlags & 0x0000000000000400LL) damage+= uint32(m_caster->GetTotalAttackPowerValue(BASE_ATTACK) * 0.207f); // Heroic Throw ${$m1+$AP*.50} - else if(m_spellInfo->SpellFamilyFlags & 0x0000000000000400LL) + else if(m_spellInfo->SpellFamilyFlags & 0x0000000100000000LL) damage+= uint32(m_caster->GetTotalAttackPowerValue(BASE_ATTACK) * 0.5f); break; }