mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 10:37:02 +00:00
[7429] Fix one warrior ability bonus
Signed-off-by: DiSlord <dislord@nomail.com>
This commit is contained in:
parent
6a90d60327
commit
acce72403c
2 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||||
|
|
|
||||||
|
|
@ -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__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue