diff options
author | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-11-06 20:23:33 +0000 |
---|---|---|
committer | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-11-06 20:23:33 +0000 |
commit | c359ed680a6aecc5180f3a5990981ffc226a8787 (patch) | |
tree | a2588e82ee99374a80bf0e2eef342b638c1af016 /src/char/char.c | |
parent | 42001500a31afb0b58ebc58689a7c87ba4e0b9bf (diff) | |
download | hercules-c359ed680a6aecc5180f3a5990981ffc226a8787.tar.gz hercules-c359ed680a6aecc5180f3a5990981ffc226a8787.tar.bz2 hercules-c359ed680a6aecc5180f3a5990981ffc226a8787.tar.xz hercules-c359ed680a6aecc5180f3a5990981ffc226a8787.zip |
* 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
Diffstat (limited to 'src/char/char.c')
-rw-r--r-- | src/char/char.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |