From b9929bd369fabfd8ca10028a828ad405c1b0a93e Mon Sep 17 00:00:00 2001 From: ultramage Date: Mon, 6 Oct 2008 08:03:37 +0000 Subject: [PATCH] Fixed friends list ack packet using truncated values (bugreport:2310). Blame goes to r2574. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@13260 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/clif.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/map/clif.c b/src/map/clif.c index 140c8b158b..35c9afc8c7 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -11027,8 +11027,8 @@ void clif_friendslist_reqack(struct map_session_data *sd, struct map_session_dat WFIFOW(fd,2) = type; if (f_sd) { - WFIFOW(fd,4) = f_sd->status.account_id; - WFIFOW(fd,8) = f_sd->status.char_id; + WFIFOL(fd,4) = f_sd->status.account_id; + WFIFOL(fd,8) = f_sd->status.char_id; memcpy(WFIFOP(fd, 12), f_sd->status.name,NAME_LENGTH); } WFIFOSET(fd, packet_len(0x209));