diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-08 00:25:51 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-08 00:25:51 +0000 |
commit | 317cbdc2d67cc699a38b966d504d0f8a1cb9262f (patch) | |
tree | 11b36a93484bc461ca141b8ad1913d2258c9b16f | |
parent | 0c72a8a9edc6542de77405e3ec3e7cf256b406e6 (diff) | |
download | hercules-317cbdc2d67cc699a38b966d504d0f8a1cb9262f.tar.gz hercules-317cbdc2d67cc699a38b966d504d0f8a1cb9262f.tar.bz2 hercules-317cbdc2d67cc699a38b966d504d0f8a1cb9262f.tar.xz hercules-317cbdc2d67cc699a38b966d504d0f8a1cb9262f.zip |
- Fixed SC_BERSERK setting Hp to 100 when dispelled by unnatural means (eg: wand of hermod)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8668 54d463be-8e91-2dee-dedb-b68131a5f0ec
-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))
|