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 --- src/char/char.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/char/char.c') 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); -- cgit v1.2.3-70-g09d2