diff options
| author | megamage <none@none> | 2009-02-21 17:05:13 -0600 |
|---|---|---|
| committer | megamage <none@none> | 2009-02-21 17:05:13 -0600 |
| commit | 41f5d5c00880fd23182b3b334968d68604a76137 (patch) | |
| tree | 8cd836b621d76f07f50b17b4a60802dc90276613 /src/game/SpellEffects.cpp | |
| parent | 39c8c6d6e80e2b1fb8b2882a6870458864010570 (diff) | |
[7315] Fixed bonus damage for Seal of Command. Author: Lightguard
--HG--
branch : trunk
Diffstat (limited to 'src/game/SpellEffects.cpp')
| -rw-r--r-- | src/game/SpellEffects.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 83ae7de09cf..8eb1a3e3167 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -4534,7 +4534,8 @@ void Spell::SpellDamageWeaponDmg(uint32 i) // Seal of Command - receive benefit from Spell Damage and Healing if(m_spellInfo->SpellFamilyFlags[0] & 0x2000000) { - spell_bonus += int32(0.20f*m_caster->SpellBaseDamageBonus(GetSpellSchoolMask(m_spellInfo))); + totalDamagePercentMod = 0.45f; + spell_bonus += int32(0.23f*m_caster->SpellBaseDamageBonus(GetSpellSchoolMask(m_spellInfo))); spell_bonus += int32(0.29f*m_caster->SpellBaseDamageBonusForVictim(GetSpellSchoolMask(m_spellInfo), unitTarget)); } break; |
