*Correct damage for Shield of Righteousness.

--HG--
branch : trunk
This commit is contained in:
Anubisss
2009-07-26 03:25:18 +02:00
parent 3c04635694
commit 3409ddf1a8
3 changed files with 2 additions and 2 deletions

View File

@@ -1630,7 +1630,6 @@ INSERT INTO `spell_bonus_data` (`entry`, `direct_bonus`, `dot_bonus`, `ap_bonus`
(25742, 0.07, -1, 0.039, -1, 'Paladin - Seal of Righteousness Dummy Proc'),
(53719, 0, 0, 0, 0, 'Paladin - Seal of the Martyr Proc Enemy'),
(53718, 0, 0, 0, 0, 'Paladin - Seal of the Martyr Proc Self'),
(53600, 0, 0, 0, 0, 'Paladin - Shield of Righteousness'),
(32546, 0.8068, -1, -1, -1, 'Priest - Binding Heal'),
(27813, 0, 0, 0, 0, 'Priest - Blessed Recovery Rank 1'),
(34861, 0.402, -1, -1, -1, 'Priest - Circle of Healing'),

View File

@@ -0,0 +1 @@
DELETE FROM `spell_bonus_data` WHERE `entry` = 53600;

View File

@@ -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;
}