diff options
author | megamage <none@none> | 2009-02-21 17:07:48 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-02-21 17:07:48 -0600 |
commit | c8d63324810c7aa02d35bd5cb0c3c71691912737 (patch) | |
tree | 44016bf72cbe5e1e0e64f2ec9eb70b7ff0cc254b /src/game/SpellEffects.cpp | |
parent | cb6df9b7b49c6d509e3980dc09372020ee346059 (diff) |
[7318] Fixed damage bonus for spell 1329 and ranks when target is poisoned. Author: Tequila
--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 8eb1a3e3167..588fa019387 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -4525,7 +4525,7 @@ void Spell::SpellDamageWeaponDmg(uint32 i) } if(found) - totalDamagePercentMod *= 1.5f; // 150% if poisoned + totalDamagePercentMod *= 1.2f; // 120% if poisoned } break; } |