diff options
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/unit.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index c83e1ef45..69854b488 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. +2007/05/23 + * Fixed a typo in Chase Walk code, /thx to zephyrus_cr [ultramage] 2007/05/22 * Updated sql files [Playtester] 2007/05/21 diff --git a/src/map/unit.c b/src/map/unit.c index 77a305f18..c4ca10395 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -968,7 +968,7 @@ int unit_skilluse_id2(struct block_list *src, int target_id, int skill_num, int temp = 1; break; case ST_CHASEWALK: - if (sc && sc->data[ST_CHASEWALK].timer != -1) + if (sc && sc->data[SC_CHASEWALK].timer != -1) casttime = 0; break; case TK_RUN: |