[7429] Fix one warrior ability bonus

Signed-off-by: DiSlord <dislord@nomail.com>
This commit is contained in:
Lightguard 2009-03-09 22:28:57 +03:00
parent 6a90d60327
commit acce72403c
2 changed files with 2 additions and 2 deletions

View file

@ -369,7 +369,7 @@ void Spell::EffectSchoolDMG(uint32 effect_idx)
damage = uint32(damage * (m_caster->GetTotalAttackPowerValue(BASE_ATTACK)) / 100);
}
// Shield Slam
else if(m_spellInfo->SpellFamilyFlags & 0x100000000LL)
else if(m_spellInfo->SpellFamilyFlags & 0x0000020000000000LL)
damage += int32(m_caster->GetShieldBlockValue());
// Victory Rush
else if(m_spellInfo->SpellFamilyFlags & 0x10000000000LL)