diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-02 23:36:13 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-02 23:36:13 +0000 |
commit | 476c3bcf31589957b9624e638150daaf77952028 (patch) | |
tree | 18a124d79950cd4a3f441a39f5faa1bb08b69933 /src/map/unit.c | |
parent | 0dfbd63d9f60ce11accb4d34198ecafb6c59cd26 (diff) | |
download | hercules-476c3bcf31589957b9624e638150daaf77952028.tar.gz hercules-476c3bcf31589957b9624e638150daaf77952028.tar.bz2 hercules-476c3bcf31589957b9624e638150daaf77952028.tar.xz hercules-476c3bcf31589957b9624e638150daaf77952028.zip |
- Fixed a bug in unit_can_reach_bl which breaks path seeking when the target is near obstacles.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6950 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/unit.c')
-rw-r--r-- | src/map/unit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/unit.c b/src/map/unit.c index 5852f9ecb..d8ef113e7 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -1080,8 +1080,8 @@ int unit_attack(struct block_list *src,int target_id,int type) return 0;
}
- if(!(src->type == BL_MOB && ((TBL_MOB *)src)->state.killer) && (battle_check_target(src,target,BCT_ENEMY)<=0 ||
- !status_check_skilluse(src, target, 0, 0))
+ if(battle_check_target(src,target,BCT_ENEMY)<=0 ||
+ !status_check_skilluse(src, target, 0, 0)
) {
unit_unattackable(src);
return 1;
@@ -1156,7 +1156,7 @@ int unit_can_reach_bl(struct block_list *bl,struct block_list *tbl, int range, i dx=(dx>0)?1:((dx<0)?-1:0);
dy=(dy>0)?1:((dy<0)?-1:0);
- if (map_getcell(tbl->m,tbl->x+dx,tbl->y+dy,CELL_CHKNOREACH))
+ if (map_getcell(tbl->m,tbl->x-dx,tbl->y-dy,CELL_CHKNOREACH))
{ //Look for a suitable cell to place in.
for(i=0;i<9 && map_getcell(tbl->m,tbl->x-dirx[i],tbl->y-diry[i],CELL_CHKNOREACH);i++);
if (i==9) return 0; //No valid cells.
|