* 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://svn.code.sf.net/p/rathena/svn/trunk@13356 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
FlavioJS
2008-11-06 20:23:33 +00:00
parent caa8b3ed2a
commit d474fff85a
3 changed files with 7 additions and 2 deletions

View File

@@ -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);