summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog-Trunk.txt1
-rw-r--r--src/map/status.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index 4083fc804..5f27cfa05 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2007/10/15
+ * Fixed NPC_CRITICALWOUND to reduce heal by 20% per level [Playtester]
* Fixing TK Mission asigning non spawning mobs. [Zephyrus]
* Updated the item price/sell reading code to enable 'null' values. The
difference between a blank value and 0 is that when the value is blank, it
diff --git a/src/map/status.c b/src/map/status.c
index defef4f27..64d6ab28c 100644
--- a/src/map/status.c
+++ b/src/map/status.c
@@ -5788,7 +5788,7 @@ int status_change_start(struct block_list *bl,int type,int rate,int val1,int val
val2 = rand()%ELE_MAX;
break;
case SC_CRITICALWOUND:
- val2 = 10*val1; //Heal effectiveness decrease
+ val2 = 20*val1; //Heal effectiveness decrease
break;
case SC_MAGICMIRROR:
case SC_SLOWCAST: