From c359ed680a6aecc5180f3a5990981ffc226a8787 Mon Sep 17 00:00:00 2001 From: FlavioJS Date: Thu, 6 Nov 2008 20:23:33 +0000 Subject: * Fixed 'Char creation denied' message not being sent properly. - Number 2 didn't exist in old clients so it used the default message, now it exists so the wrong message is displayed. - Changed 2 to 0xFF to get the default message. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13356 54d463be-8e91-2dee-dedb-b68131a5f0ec --- Changelog-Trunk.txt | 5 +++++ src/char/char.c | 2 +- src/char_sql/char.c | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index f1453c29a..c130ce80a 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -3,6 +3,11 @@ Date Added AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. +2008/11/06 + * Fixed 'Char creation denied' message not being sent properly. [FlavioJS] + - Number 2 didn't exist in old clients so it used the default message, + now it exists so the wrong message is displayed. + - Changed 2 to 0xFF to get the default message. 2008/11/05 * Fixed issue preventing you from changing to the original cart when using Change Cart. (bugreport:2383) [Sara] 2008/10/29 diff --git a/src/char/char.c b/src/char/char.c index 11e99d64c..3d9df5752 100644 --- a/src/char/char.c +++ b/src/char/char.c @@ -3439,7 +3439,7 @@ int parse_char(int fd) WFIFOW(fd,0) = 0x6e; switch (i) { case -1: WFIFOB(fd,2) = 0x00; break; - case -2: WFIFOB(fd,2) = 0x02; break; + case -2: WFIFOB(fd,2) = 0xFF; break; case -3: WFIFOB(fd,2) = 0x01; break; } WFIFOSET(fd,3); diff --git a/src/char_sql/char.c b/src/char_sql/char.c index 9cba965dc..16392eef5 100644 --- a/src/char_sql/char.c +++ b/src/char_sql/char.c @@ -3107,7 +3107,7 @@ int parse_char(int fd) WFIFOW(fd,0) = 0x6e; switch (i) { case -1: WFIFOB(fd,2) = 0x00; break; - case -2: WFIFOB(fd,2) = 0x02; break; + case -2: WFIFOB(fd,2) = 0xFF; break; case -3: WFIFOB(fd,2) = 0x01; break; } WFIFOSET(fd,3); -- cgit v1.2.3-70-g09d2