diff options
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 6038a4947..662cfb580 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -5957,22 +5957,18 @@ int clif_combo_delay(struct block_list *bl,int wait) /*========================================== *”’nŽæ‚è *------------------------------------------*/ -int clif_bladestop(struct block_list *src,struct block_list *dst, - int _bool) +void clif_bladestop(struct block_list *src, int dst_id, int active) { unsigned char buf[32]; nullpo_retr(0, src); - nullpo_retr(0, dst); WBUFW(buf,0)=0x1d1; WBUFL(buf,2)=src->id; - WBUFL(buf,6)=dst->id; - WBUFL(buf,10)=_bool; + WBUFL(buf,6)=dst_id; + WBUFL(buf,10)=active; clif_send(buf,packet_len(0x1d1),src,AREA); - - return 0; } /*========================================== |