diff options
author | QAston <none@none> | 2009-06-16 15:29:07 +0200 |
---|---|---|
committer | QAston <none@none> | 2009-06-16 15:29:07 +0200 |
commit | 2e6db5421eb0132fc84d26b6f0c28c76a6b89a67 (patch) | |
tree | c0da76853de39de1e4c8b8c8c0792e04ce4890e9 /src/game/SpellEffects.cpp | |
parent | 56408648456b8b78d0bfed4aec8d74473ab6b62e (diff) |
*Fix aura type 280.
--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 674fe0e2ba6..610ebba2b71 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -4332,7 +4332,7 @@ void Spell::SpellDamageWeaponDmg(uint32 i) if (roll_chance_i(aurEff->GetAmount())) consumeDiseases = false; } - totalDamagePercentMod *= (float(CalculateDamage(2, unitTarget) * unitTarget->GetDiseasesByCaster(m_caster->GetGUID(), consumeDiseases) / 2) + 100.0f) / 100.f; + totalDamagePercentMod *= (float(CalculateDamage(2, unitTarget) * unitTarget->GetDiseasesByCaster(m_caster->GetGUID(), consumeDiseases) / 2) + 100.0f) / 100.0f; } // Blood-Caked Strike - Blood-Caked Blade // Blood Strike else if (m_spellInfo->SpellIconID == 1736 || m_spellInfo->SpellFamilyFlags[0] & 0x400000) |