diff options
author | spp <none@none> | 2009-12-13 12:31:01 +0100 |
---|---|---|
committer | spp <none@none> | 2009-12-13 12:31:01 +0100 |
commit | 5011397fba63cf7f7cb17e640ae592c09f5364a5 (patch) | |
tree | c5cf7851eb489156454186f4a20972594be9db0c | |
parent | 3fc61524ffe12a6790a3438cd8cd324c5b363c60 (diff) |
Fix Judgement of Vengeance/Corruption damage. By footman, closes #88
--HG--
branch : trunk
-rw-r--r-- | src/game/SpellEffects.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index f4bf4ea55a0..58a3d242e69 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -684,7 +684,7 @@ void Spell::SpellDamageSchoolDmg(uint32 effect_idx) damage += int32(0.25f*ap + 0.4f*sp); } // Judgement of Wisdom, Light, Justice - else if (m_spellInfo->SpellFamilyFlags[0]&0x00800000) + else if (m_spellInfo->SpellFamilyFlags[0] & 0x00800000 && m_spellInfo->Id != 31804 && m_spellInfo->Id != 53733) { float ap = m_caster->GetTotalAttackPowerValue(BASE_ATTACK); float sp = m_caster->SpellBaseDamageBonus(GetSpellSchoolMask(m_spellInfo)); |