diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-30 17:11:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-30 17:48:44 +0300 |
commit | 5232d8fa98cbfb7a85e15b182eeb1e22d5b7376a (patch) | |
tree | 02fb3608af73a948adef7787e8f2ffd562b3c7d1 /src/map/clif.h | |
parent | 4597146d5a26105130d2181cfae5403bd3013366 (diff) | |
download | evol-hercules-5232d8fa98cbfb7a85e15b182eeb1e22d5b7376a.tar.gz evol-hercules-5232d8fa98cbfb7a85e15b182eeb1e22d5b7376a.tar.bz2 evol-hercules-5232d8fa98cbfb7a85e15b182eeb1e22d5b7376a.tar.xz evol-hercules-5232d8fa98cbfb7a85e15b182eeb1e22d5b7376a.zip |
map: send full moving path to client.
Also fix memory issue in string translation.
Diffstat (limited to 'src/map/clif.h')
-rw-r--r-- | src/map/clif.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/clif.h b/src/map/clif.h index 3b28390..79da4a4 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -19,5 +19,8 @@ void eclif_authok_post(struct map_session_data *sd); void eclif_changemap_post(struct map_session_data *sd, short *m, int *x, int *y); void eclif_set_unit_idle_post(struct block_list* bl, struct map_session_data *tsd, enum send_target *target); +void eclif_set_unit_walking(struct block_list* bl, struct map_session_data *tsd, + struct unit_data* ud, enum send_target *target); +void eclif_move(struct unit_data *ud); #endif // EVOL_MAP_CLIF |