aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormegamage <none@none>2009-02-21 17:07:48 -0600
committermegamage <none@none>2009-02-21 17:07:48 -0600
commitc8d63324810c7aa02d35bd5cb0c3c71691912737 (patch)
tree44016bf72cbe5e1e0e64f2ec9eb70b7ff0cc254b
parentcb6df9b7b49c6d509e3980dc09372020ee346059 (diff)
[7318] Fixed damage bonus for spell 1329 and ranks when target is poisoned. Author: Tequila
--HG-- branch : trunk
-rw-r--r--src/game/SpellEffects.cpp2
-rw-r--r--src/shared/revision_nr.h2
2 files changed, 2 insertions, 2 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;
}
diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h
index 1be10ef40d4..0116cf33dab 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 "7316"
+ #define REVISION_NR "7318"
#endif // __REVISION_NR_H__