From b18020176f3f6fbd1be02281ff2c14ed6af3616d Mon Sep 17 00:00:00 2001 From: Tequila Date: Sat, 21 Feb 2009 11:25:01 +0100 Subject: [PATCH] [7318] Fixed damage bonus for spell 1329 and ranks when target is poisoned. Signed-off-by: ApoC --- src/game/SpellEffects.cpp | 2 +- src/shared/revision_nr.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index fa80c9a51..3cf1362da 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -4357,7 +4357,7 @@ void Spell::EffectWeaponDmg(uint32 i) } if(found) - totalDamagePercentMod *= 1.5f; // 150% if poisoned + totalDamagePercentMod *= 1.2f; // 120% if poisoned } break; } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 1e66c4fa7..0116cf33d 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "7317" + #define REVISION_NR "7318" #endif // __REVISION_NR_H__ -- 2.11.4.GIT