mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 15:40:45 +01:00
*Correct damage for Shield of Righteousness.
--HG-- branch : trunk
This commit is contained in:
@@ -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'),
|
||||
|
||||
1
sql/updates/4598_world_spell_bonus_data.sql
Normal file
1
sql/updates/4598_world_spell_bonus_data.sql
Normal file
@@ -0,0 +1 @@
|
||||
DELETE FROM `spell_bonus_data` WHERE `entry` = 53600;
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user