diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-10-06 11:26:24 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-10-06 11:26:24 +0000 |
commit | e4f858b6882b73e3c82ba9e1964b12bf39dd18da (patch) | |
tree | 789c5560b4387040da90506d965ecc623815c82d | |
parent | 1bbcb672ef6f8f6f4c60448d97ab07eca94a96bc (diff) | |
download | hercules-e4f858b6882b73e3c82ba9e1964b12bf39dd18da.tar.gz hercules-e4f858b6882b73e3c82ba9e1964b12bf39dd18da.tar.bz2 hercules-e4f858b6882b73e3c82ba9e1964b12bf39dd18da.tar.xz hercules-e4f858b6882b73e3c82ba9e1964b12bf39dd18da.zip |
SC_WEIGHT50 and 90 are no longer removed on death. (bugreport:2316)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13262 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/status.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 8078c7009..f9ccad722 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -3,6 +3,8 @@ Date Added AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. +2008/10/06 + * Rev. 13262 SC_WEIGHT50 and 90 are no longer removed on death. (bugreport:2316) [L0ne_W0lf] 2008/10/04 * Delete ST_LOGIN auth in chrif_disconnectplayer (followup to r13256, bugreport:2292) [FlavioJS] 2008/10/03 diff --git a/src/map/status.c b/src/map/status.c index 9c04f8364..61c60d9c8 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -6374,6 +6374,8 @@ int status_change_clear(struct block_list* bl, int type) if(type == 0) switch (i) { //Type 0: PC killed -> Place here statuses that do not dispel on death. + case SC_WEIGHT50: + case SC_WEIGHT90: case SC_EDP: case SC_MELTDOWN: case SC_XMAS: |