summaryrefslogtreecommitdiff
path: root/src/map
diff options
context:
space:
mode:
Diffstat (limited to 'src/map')
-rw-r--r--src/map/clif.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index 09d8c9a94..131d870bc 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -4560,7 +4560,9 @@ int clif_status_change(struct block_list *bl,int type,int flag,unsigned int tick
WBUFL(buf,13)=0;
WBUFL(buf,17)=0;
WBUFL(buf,21)=0;
- clif_send(buf,packet_len(0x43f),bl,AREA);
+ //for some reason, it isn't reading the packet length properly!
+ //clif_send(buf,packet_len(0x43f),bl,AREA);
+ clif_send(buf,25,bl,AREA);
} else
clif_send(buf,packet_len(0x196),bl,AREA);
return 0;