diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-08-13 13:48:30 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-08-13 13:48:30 -0600 |
commit | 1b7508c510aae8906fdcd7309da47c97b2804184 (patch) | |
tree | 9c0342ba083fa520e8dba147487bc851afb4da3a /src/map/clif.h | |
parent | 72eb808de6efd156af1463219572d809caf48978 (diff) | |
download | tmwa-1b7508c510aae8906fdcd7309da47c97b2804184.tar.gz tmwa-1b7508c510aae8906fdcd7309da47c97b2804184.tar.bz2 tmwa-1b7508c510aae8906fdcd7309da47c97b2804184.tar.xz tmwa-1b7508c510aae8906fdcd7309da47c97b2804184.zip |
Change sending of hair style and color
Send them together in overloaded change looks packets (twice for older
clients). This lets newer clients be more flexible with their handling
of hair.
Diffstat (limited to 'src/map/clif.h')
-rw-r--r-- | src/map/clif.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/clif.h b/src/map/clif.h index 198bbff..0816093 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -63,6 +63,7 @@ int clif_damage(struct block_list *,struct block_list *,unsigned int,int,int,int #define clif_takeitem(src,dst) clif_damage(src,dst,0,0,0,0,0,1,0) int clif_changelook(struct block_list *,int,int); // area int clif_changelook_towards(struct block_list *,int,int, struct map_session_data *dst); // area or target +int clif_changehair(struct block_list *,int,int); void clif_changelook_accessories(struct block_list *bl, struct map_session_data *dst); // area or target; list gloves, boots etc. int clif_arrowequip(struct map_session_data *sd,int val); //self int clif_arrow_fail(struct map_session_data *sd,int type); //self |