From 0042fe5bb64127f72e04001f87be780ebbfbef69 Mon Sep 17 00:00:00 2001 From: Napster Date: Sun, 20 Dec 2015 12:16:35 +0700 Subject: [PATCH] Follow up to https://github.com/rathena/rathena/commit/d2d1fd2 *Fixed issues Character Deletion Time for the client 2014 or newer. Thanks you to @Nova --- src/char/char.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/char/char.c b/src/char/char.c index 2acd87a1b2..483a5a7d5f 100644 --- a/src/char/char.c +++ b/src/char/char.c @@ -1767,7 +1767,7 @@ int char_mmo_char_tobuf(uint8* buffer, struct mmo_charstatus* p) offset += MAP_NAME_LENGTH_EXT; #endif #if PACKETVER >= 20100803 -#if PACKETVER > 20130000 +#if PACKETVER > 20130000 && PACKETVER < 20141016 WBUFL(buf,124) = (p->delete_date?TOL(p->delete_date-time(NULL)):0); #else WBUFL(buf,124) = TOL(p->delete_date);