summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorDennis Friis <peavey@placid.dk>2008-04-25 22:44:41 +0000
committerDennis Friis <peavey@placid.dk>2008-04-25 22:44:41 +0000
commit0dbd88dd02dcf0a4c3e7f9e2c9969b916be4fc72 (patch)
tree6f24b8f839d1d1f4a298b9d6c892316a91f5c6c5 /src/map/clif.c
parent3aeb49c7c51c8d1063bc52e3104b0f3cef6b56db (diff)
downloadtmwa-0dbd88dd02dcf0a4c3e7f9e2c9969b916be4fc72.tar.gz
tmwa-0dbd88dd02dcf0a4c3e7f9e2c9969b916be4fc72.tar.bz2
tmwa-0dbd88dd02dcf0a4c3e7f9e2c9969b916be4fc72.tar.xz
tmwa-0dbd88dd02dcf0a4c3e7f9e2c9969b916be4fc72.zip
Possible fix for inventory bug. Send out packet 0x01C8 only to SELF and not AREA.
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index f3419f9..04d6c4b 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -2895,7 +2895,7 @@ int clif_useitemack(struct map_session_data *sd,int index,int amount,int ok)
WBUFL(buf,6)=sd->bl.id;
WBUFW(buf,10)=amount;
WBUFB(buf,12)=ok;
- clif_send(buf,packet_len_table[0x1c8],&sd->bl,AREA);
+ clif_send(buf,packet_len_table[0x1c8],&sd->bl,SELF);
#endif
}