diff options
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/status.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index d9b38eb81..ec53a7a21 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,8 @@ 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.
2006/09/07
+ * Fixed SC_BERSERK setting Hp to 100 when dispelled by unnatural means (eg:
+ wand of hermod) [Skotlex]
* Cleaned up the doridori parse clif function. [Skotlex]
* Merged some of mpeg's work on NJ skills [Skotlex]
* Removed the Warmth "stacking" code. [Skotlex]
diff --git a/src/map/status.c b/src/map/status.c index f4af0c8e7..eeb73c0df 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -6830,7 +6830,7 @@ int status_change_clear_buffs (struct block_list *bl, int type) case SC_BERSERK:
if (!(type&1))
continue;
- sc->data[i].val4 = 1;
+ sc->data[i].val2 = 0;
break;
default:
if (!(type&1))
|