From 9242fc277751e76f7f9204ff7fca98ce59e6de57 Mon Sep 17 00:00:00 2001 From: Skotlex Date: Wed, 10 Aug 2011 16:53:47 +0000 Subject: - added sending a dummy 0x08b9 packet in the char-server, required to support clients from this year. - added a fix to status_heal to take into account that -int_max == int_max in some architectures, which leads to an infinite loop (bugreport:3410) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14930 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/char/char.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/char') diff --git a/src/char/char.c b/src/char/char.c index 4c9e1fb7d..6e7100403 100644 --- a/src/char/char.c +++ b/src/char/char.c @@ -2223,6 +2223,16 @@ int parse_fromlogin(int fd) { // send characters to player mmo_char_send006b(i, sd); +#if PACKETVER >= 20110309 + // PIN code system, disabled + WFIFOHEAD(i, 12); + WFIFOW(i, 0) = 0x08B9; + WFIFOW(i, 2) = 0; + WFIFOW(i, 4) = 0; + WFIFOL(i, 6) = sd->account_id; + WFIFOW(i, 10) = 0; + WFIFOSET(i, 12); +#endif } } RFIFOSKIP(fd,62); -- cgit v1.2.3-70-g09d2