diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-09-10 19:12:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-09-10 19:23:17 +0300 |
commit | dc45b9c29cfcf7c64f95dc9f81b1612dda68341d (patch) | |
tree | 194eb0b7f881d436cca129ece3c69bd75e68fc24 /src/map/path.h | |
parent | c76aa5f4843a521b1839875bf6c139f4658bd6d1 (diff) | |
download | hercules-dc45b9c29cfcf7c64f95dc9f81b1612dda68341d.tar.gz hercules-dc45b9c29cfcf7c64f95dc9f81b1612dda68341d.tar.bz2 hercules-dc45b9c29cfcf7c64f95dc9f81b1612dda68341d.tar.xz hercules-dc45b9c29cfcf7c64f95dc9f81b1612dda68341d.zip |
Add to path search functions source bl for plugins usage.
Diffstat (limited to 'src/map/path.h')
-rw-r--r-- | src/map/path.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/path.h b/src/map/path.h index 2ece8f84b..14885d566 100644 --- a/src/map/path.h +++ b/src/map/path.h @@ -42,11 +42,11 @@ struct shootpath_data { struct path_interface { // calculates destination cell for knockback - int (*blownpos) (int16 m, int16 x0, int16 y0, int16 dx, int16 dy, int count); + int (*blownpos) (struct block_list *bl, int16 m, int16 x0, int16 y0, int16 dx, int16 dy, int count); // tries to find a walkable path - bool (*search) (struct walkpath_data *wpd, int16 m, int16 x0, int16 y0, int16 x1, int16 y1, int flag, cell_chk cell); + bool (*search) (struct walkpath_data *wpd, struct block_list *bl, int16 m, int16 x0, int16 y0, int16 x1, int16 y1, int flag, cell_chk cell); // tries to find a shootable path - bool (*search_long) (struct shootpath_data *spd, int16 m, int16 x0, int16 y0, int16 x1, int16 y1, cell_chk cell); + bool (*search_long) (struct shootpath_data *spd, struct block_list *bl, int16 m, int16 x0, int16 y0, int16 x1, int16 y1, cell_chk cell); bool (*check_distance) (int dx, int dy, int distance); unsigned int (*distance) (int dx, int dy); bool (*check_distance_client) (int dx, int dy, int distance); |