From acce72403cae90f6fe95fc33539050bd54359644 Mon Sep 17 00:00:00 2001 From: Lightguard Date: Mon, 9 Mar 2009 22:28:57 +0300 Subject: [PATCH] [7429] Fix one warrior ability bonus Signed-off-by: DiSlord --- src/game/SpellEffects.cpp | 2 +- src/shared/revision_nr.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index c415edbd1..eaae76043 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -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) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index c10f61e60..8f9e2b5d9 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "7428" + #define REVISION_NR "7429" #endif // __REVISION_NR_H__