summaryrefslogtreecommitdiff
path: root/src/map
diff options
context:
space:
mode:
authorSara <Sara@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-03-24 11:01:34 +0000
committerSara <Sara@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-03-24 11:01:34 +0000
commit9b932f6363a5b23c9bf71587311c4f9172bf5f14 (patch)
tree0823746693d2dd70e34c708b027eb01778c6a559 /src/map
parentba5af7605a9ff1cd6733c5e5c6eb76e5cf79ab3b (diff)
downloadhercules-9b932f6363a5b23c9bf71587311c4f9172bf5f14.tar.gz
hercules-9b932f6363a5b23c9bf71587311c4f9172bf5f14.tar.bz2
hercules-9b932f6363a5b23c9bf71587311c4f9172bf5f14.tar.xz
hercules-9b932f6363a5b23c9bf71587311c4f9172bf5f14.zip
Ghetto-fixed the status timer packet for now.
For some reason, packet lengths as high as 0x43f are not reading properly, despite being fine in the packet database. It works fine right now, but it should be changed when the packet database reading is fixed. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13622 54d463be-8e91-2dee-dedb-b68131a5f0ec
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;