Skip to content

Commit

Permalink
Core/Spells: Fix blood-caked blade damage modifier. Author AliveShiro C…
Browse files Browse the repository at this point in the history
…loses #7831
  • Loading branch information
Star-lion committed Mar 31, 2013
1 parent 34c73a5 commit 7fb539c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/game/Spells/SpellEffects.cpp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -3379,7 +3379,7 @@ void Spell::EffectWeaponDmg(SpellEffIndex effIndex)
// Blood-Caked Strike - Blood-Caked Blade // Blood-Caked Strike - Blood-Caked Blade
if (m_spellInfo->SpellIconID == 1736) if (m_spellInfo->SpellIconID == 1736)
{ {
AddPct(totalDamagePercentMod, unitTarget->GetDiseasesByCaster(m_caster->GetGUID()) * 12.5f); AddPct(totalDamagePercentMod, unitTarget->GetDiseasesByCaster(m_caster->GetGUID()) * 50.0f);
break; break;
} }
// Heart Strike // Heart Strike
Expand Down

0 comments on commit 7fb539c

Please sign in to comment.