diff options
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 66a390568..2cb140a66 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -4556,10 +4556,10 @@ int clif_status_change(struct block_list *bl,int type,int flag,unsigned int tick WBUFL(buf,4)=bl->id; WBUFB(buf,8)=flag; if( battle_config.display_status_timers && tick>0 ) - clif_send(buf,packet_len(0x196),bl,AREA); - else { WBUFL(buf,9)=tick; clif_send(buf,packet_len(0x43f),bl,AREA); + else { + clif_send(buf,packet_len(0x196),bl,AREA); } return 0; } |