diff options
-rw-r--r-- | Changelog-Trunk.txt | 1 | ||||
-rw-r--r-- | src/map/unit.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index e0e5323ff..032105267 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -5,6 +5,7 @@ IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. EV GOES INTO TRUNK AND WILL BE MERGED INTO STABLE BY VALARIS AND WIZPUTER. -- VALARIS
2006/03/23
+ * Fixed a crash in unit_useskill_pos2 [Skotlex]
* Updated mob_db.sql and item_db.sql to current txt versions. [Skotlex]
* Fixed Devotion not properly being cleared on death/near death in some
cases. [Skotlex]
diff --git a/src/map/unit.c b/src/map/unit.c index 4280f9662..1b451e2fe 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -943,7 +943,7 @@ int unit_skilluse_pos2( struct block_list *src, int skill_x, int skill_y, int sk bl.x = skill_x;
bl.y = skill_y;
if(skill_num != TK_HIGHJUMP &&
- !battle_check_range(src,&bl,skill_get_range2(&sd->bl, skill_num,skill_lv)+1))
+ !battle_check_range(src,&bl,skill_get_range2(src, skill_num,skill_lv)+1))
return 0;
unit_stop_attack(src);
|