[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); damage = uint32(damage * (m_caster->GetTotalAttackPowerValue(BASE_ATTACK)) / 100);
} }
// Shield Slam // Shield Slam
else if(m_spellInfo->SpellFamilyFlags & 0x100000000LL) else if(m_spellInfo->SpellFamilyFlags & 0x0000020000000000LL)
damage += int32(m_caster->GetShieldBlockValue()); damage += int32(m_caster->GetShieldBlockValue());
// Victory Rush // Victory Rush
else if(m_spellInfo->SpellFamilyFlags & 0x10000000000LL) else if(m_spellInfo->SpellFamilyFlags & 0x10000000000LL)

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "7428" #define REVISION_NR "7429"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__