diff options
author | megamage <none@none> | 2009-02-04 10:55:04 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-02-04 10:55:04 -0600 |
commit | fa26941f5497a08d4be29c41c36bec060be2f36d (patch) | |
tree | 01bbd7cb776c6cb4f0f473ed6670b4a79e5f2432 /src/game/SpellEffects.cpp | |
parent | df7499e0565116c356308839079c36943ba7949c (diff) |
*Fix execute damage.
--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 05419603b59..ced60de6b54 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -1319,7 +1319,7 @@ void Spell::EffectDummy(uint32 i) rage+=aura->GetModifier()->m_amount; spell_id = 20647; - int32 bp = damage+int32(rage * m_spellInfo->DmgMultiplier[i] + + bp = damage+int32(rage * m_spellInfo->DmgMultiplier[i] + m_caster->GetTotalAttackPowerValue(BASE_ATTACK)*0.2f); m_caster->SetPower(POWER_RAGE,0); break; |