[7315] Fixed bonus damage for Seal of Command.

Signed-off-by: ApoC <apoc@nymfe.net>
This commit is contained in:
Lightguard 2009-02-21 11:07:00 +01:00 committed by ApoC
parent 03fd67aaf5
commit 628d97f588
2 changed files with 3 additions and 2 deletions

View file

@ -4366,7 +4366,8 @@ void Spell::EffectWeaponDmg(uint32 i)
// Seal of Command - receive benefit from Spell Damage and Healing
if(m_spellInfo->SpellFamilyFlags & 0x00000002000000LL)
{
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;