aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAnubisss <none@none>2009-07-26 03:25:18 +0200
committerAnubisss <none@none>2009-07-26 03:25:18 +0200
commit3409ddf1a86f31ebc4fca3fa5ca4fb606fed14eb (patch)
tree1f40cb89d769785ac94f4fe0a512ff360df2b814 /src
parent3c046356942193756987dc646b30dcf408a1630f (diff)
*Correct damage for Shield of Righteousness.
--HG-- branch : trunk
Diffstat (limited to 'src')
-rw-r--r--src/game/SpellEffects.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp
index 0ec93efa83e..7ee0289e329 100644
--- a/src/game/SpellEffects.cpp
+++ b/src/game/SpellEffects.cpp
@@ -619,7 +619,7 @@ void Spell::SpellDamageSchoolDmg(uint32 effect_idx)
// Shield of Righteousness
else if(m_spellInfo->SpellFamilyFlags[1]&0x00100000)
{
- damage+=int32(m_caster->GetShieldBlockValue());
+ damage += int32(m_caster->GetShieldBlockValue() * 1.3f);
}
break;
}