diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-02-22 15:27:04 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-02-22 15:27:04 +0000 |
commit | 4d1e84d0d9af4fcad025e039544a37a76c91aa1a (patch) | |
tree | 6a321009e67b491bc9bb5fb736b043953d8eee94 /src/map/pet.c | |
parent | 8f639ee19e832b9748f4315a9f44a45551e96526 (diff) | |
download | hercules-4d1e84d0d9af4fcad025e039544a37a76c91aa1a.tar.gz hercules-4d1e84d0d9af4fcad025e039544a37a76c91aa1a.tar.bz2 hercules-4d1e84d0d9af4fcad025e039544a37a76c91aa1a.tar.xz hercules-4d1e84d0d9af4fcad025e039544a37a76c91aa1a.zip |
- Added map chk cells types CELL_CHKREACH and CELL_CHKNOREACH, they are the same as their PASS/NOPASS equivalents, but will ignore the cell-stacking mod when enabled.
- Updated path.c with jA's implementation, which should make long path searching more efficient.
- Also added some typedefs from jA for the common structure types (PC/MOB/NPC, etc)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5366 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pet.c')
-rw-r--r-- | src/map/pet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pet.c b/src/map/pet.c index ad9a4ddbc..4249ab1fa 100644 --- a/src/map/pet.c +++ b/src/map/pet.c @@ -95,7 +95,7 @@ static int pet_can_reach(struct pet_data *pd,int x,int y) wpd.path_len=0;
wpd.path_pos=0;
wpd.path_half=0;
- return (path_search(&wpd,pd->bl.m,pd->bl.x,pd->bl.y,x,y,0)!=-1)?1:0;
+ return (path_search_real(&wpd,pd->bl.m,pd->bl.x,pd->bl.y,x,y,0,CELL_CHKNOREACH)!=-1)?1:0;
}
static int pet_calc_pos(struct pet_data *pd,int tx,int ty,int dir)
|