diff options
| author | QAston <none@none> | 2009-06-26 17:16:32 +0200 |
|---|---|---|
| committer | QAston <none@none> | 2009-06-26 17:16:32 +0200 |
| commit | 63a936b0b77baea933f2ab9116ef93487e13d701 (patch) | |
| tree | 785528c15d07295d1d7aab3f4c8915030ff4c7cc /src/game/SpellEffects.cpp | |
| parent | c3516ad8f353dff84e7b60af3df98c17ccf373b0 (diff) | |
*Fix exorcism target check and crit chance calculation
*Do not apply spelldmg bonuses to conflagrate multiple times.
--HG--
branch : trunk
Diffstat (limited to 'src/game/SpellEffects.cpp')
| -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 3a4fdd7c993..1de51e112fb 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -484,8 +484,8 @@ void Spell::SpellDamageSchoolDmg(uint32 effect_idx) (*i)->GetCasterGUID()==m_caster->GetGUID() ) { uint32 pdamage = (*i)->GetAmount() > 0 ? (*i)->GetAmount() : 0; - pdamage = m_caster->SpellDamageBonus(unitTarget, (*i)->GetSpellProto(), pdamage, DOT, (*i)->GetParentAura()->GetStackAmount()); damage += pdamage * 4; // 4 ticks of 3 seconds = 12 secs + //damage = m_caster->SpellDamageBonus(unitTarget, (*i)->GetSpellProto(), damage, DOT, (*i)->GetParentAura()->GetStackAmount()); // Glyph of Conflagrate if (!m_caster->HasAura(56235)) unitTarget->RemoveAurasDueToSpell((*i)->GetId(), m_caster->GetGUID()); |
