diff options
author | Matheus Macabu <mkbu95@gmail.com> | 2013-06-14 00:57:18 -0300 |
---|---|---|
committer | Matheus Macabu <mkbu95@gmail.com> | 2013-06-14 00:57:18 -0300 |
commit | 94bd7167765a0e66b74ab0484d4b202d22578438 (patch) | |
tree | 9c9ba560be85353fab5c4a8e2396b3b57af349d6 /src | |
parent | 1262d8f55993c57a12268cf05a9d2956602bd65f (diff) | |
download | hercules-94bd7167765a0e66b74ab0484d4b202d22578438.tar.gz hercules-94bd7167765a0e66b74ab0484d4b202d22578438.tar.bz2 hercules-94bd7167765a0e66b74ab0484d4b202d22578438.tar.xz hercules-94bd7167765a0e66b74ab0484d4b202d22578438.zip |
Partial fix for #7339.
There is another topic on it that has to be discussed.
Signed-off-by: Matheus Macabu <mkbu95@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/map/unit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/unit.c b/src/map/unit.c index 371a75ac7..7b270adc7 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -327,7 +327,8 @@ int unit_walktoxy( struct block_list *bl, short x, short y, int flag) path_search(&wpd, bl->m, bl->x, bl->y, x, y, flag&1, CELL_CHKNOPASS); // Count walk path cells #ifdef OFFICIAL_WALKPATH if( !path_search_long(NULL, bl->m, bl->x, bl->y, x, y, CELL_CHKNOPASS) // Check if there is an obstacle between - && wpd.path_len > 14 ) // Official number of walkable cells is 14 if and only if there is an obstacle between. [malufett] + && (wpd.path_len > 14) // Official number of walkable cells is 14 if and only if there is an obstacle between. [malufett] + && (bl->type != BL_NPC) ) // If type is a NPC, please disregard. return 0; #endif if( (battle_config.max_walk_path < wpd.path_len) && (bl->type != BL_NPC) ) |