diff options
author | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-12-06 10:57:31 +0000 |
---|---|---|
committer | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-12-06 10:57:31 +0000 |
commit | 23867efcc4336f811cf6c424a62110d514ee8293 (patch) | |
tree | 4673f54ec683ac6772ec3d3534d29d088ea916cf /src/map/clif.h | |
parent | 49b620d06a9b5c835e97aa238b42d5d56743e6fb (diff) | |
download | hercules-23867efcc4336f811cf6c424a62110d514ee8293.tar.gz hercules-23867efcc4336f811cf6c424a62110d514ee8293.tar.bz2 hercules-23867efcc4336f811cf6c424a62110d514ee8293.tar.xz hercules-23867efcc4336f811cf6c424a62110d514ee8293.zip |
- Messages with server_tick field are sent as soon as possible now.
This might fix client synchronization issues.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9415 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.h')
-rw-r--r-- | src/map/clif.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/map/clif.h b/src/map/clif.h index df8ac3441..3cda2334c 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -319,8 +319,9 @@ int clif_pet_emotion(struct pet_data *pd,int param); int clif_pet_performance(struct block_list *bl,int param); int clif_pet_equip(struct pet_data *pd); int clif_pet_food(struct map_session_data *sd,int foodid,int fail); -int clif_send (unsigned char *buf, int len, struct block_list *bl, int type); -int clif_send_debug(struct map_session_data *sd, int cmd, int* args, int args_num); +#define clif_send(buf,len,bl,type) _clif_send(buf,len,bl,type,0) +#define clif_send2(buf,len,bl,type,flush) _clif_send(buf,len,bl,type,flush) +int _clif_send(unsigned char *buf, int len, struct block_list *bl, int type, char flush); //friends list int clif_friendslist_toggle_sub(struct map_session_data *sd,va_list ap); |