From 5498a520d7b5bc65d8b8c2ab949cf2986848c104 Mon Sep 17 00:00:00 2001 From: skotlex Date: Wed, 29 Mar 2006 14:53:22 +0000 Subject: - Some cleaning of the mob_ai. Mobs should stop chasing once you are beyond their min_chase range. Improved rude-attacked checking when mobs can't move. - range3 is now used as min-chase value of mobs. - Added a debug message when status_change_timer fails. - Fixed tick direct modifications increasing duration instead of decreasing it. - Fixed inf2 of Jump-Kick to make it a "combo-skill" so that it may do a BCT_ENEMY check. - When sd->state.skill_flag is set, auto-targetting through combo-skills is disabled. - You can't SG_FEEL maps already memorized. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5796 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/unit.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/map/unit.c') diff --git a/src/map/unit.c b/src/map/unit.c index d40ba59da..fee09279c 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -241,8 +241,8 @@ static int unit_walktoxy_timer(int tid,unsigned int tick,int id,int data) { //Stopped walking. Update to_x and to_y to current location [Skotlex] ud->to_x = bl->x; ud->to_y = bl->y; - if (bl->type == BL_NPC) //Original eA code had this one only for BL_NPCs - clif_fixpos(bl); +// if (bl->type == BL_NPC) //Original eA code had this one only for BL_NPCs +// clif_fixpos(bl); } return 0; } @@ -680,7 +680,7 @@ int unit_skilluse_id2(struct block_list *src, int target_id, int skill_num, int if (sc && !sc->count) sc = NULL; //Unneeded //temp: used to signal combo-skills right now. - temp = (target_id == src->id + temp = (target_id == src->id && !(sd && sd->state.skill_flag) && skill_get_inf(skill_num)&INF_SELF_SKILL && skill_get_inf2(skill_num)&INF2_NO_TARGET_SELF); if (temp) -- cgit v1.2.3-70-g09d2