diff options
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/skill.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 0183db62a..7f7bcf337 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.
+2006/07/28
+ * Fixed duplicate case value on NJ_SUITON [Toms]
2006/07/27
* Fixed a memory leak when there exists more than one user function with
the same name, added the appropiate warning when this happens. [Skotlex]
diff --git a/src/map/skill.c b/src/map/skill.c index 3ea17ef1c..e9dde1409 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -7533,7 +7533,6 @@ static int skill_unit_onleft (int skill_id, struct block_list *bl, unsigned int case SA_VIOLENTGALE: case CG_HERMODE: case HW_GRAVITATION: - case NJ_SUITON: if (sc && sc->data[type].timer != -1) status_change_end(bl, type, -1); break; |