* Followup to r12579 (all other players appeared as female on sql branch).
git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@12583 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
ea96b9da32
commit
dcf71ce50b
@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
|
||||
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
|
||||
|
||||
2008/04/13
|
||||
* Followup to r12579 (all other players appeared as female on sql branch). [FlavioJS]
|
||||
* Some major updates to the quest system, beginning to move it
|
||||
over to the inter server instead of char server. (r12581) [Kevin]
|
||||
* Added an include in clif.h to avoid a complaint of gcc [Toms]
|
||||
|
@ -3156,6 +3156,8 @@ int parse_frommap(int fd)
|
||||
node->sex == sex &&
|
||||
node->ip == ip )
|
||||
{// auth ok
|
||||
cd->sex = sex;
|
||||
|
||||
WFIFOHEAD(fd,20 + sizeof(struct mmo_charstatus));
|
||||
WFIFOW(fd,0) = 0x2afd;
|
||||
WFIFOW(fd,2) = 20 + sizeof(struct mmo_charstatus);
|
||||
|
@ -2833,6 +2833,8 @@ int parse_frommap(int fd)
|
||||
node->sex == sex &&
|
||||
node->ip == ip )
|
||||
{// auth ok
|
||||
cd->sex = sex;
|
||||
|
||||
WFIFOHEAD(fd,20 + sizeof(struct mmo_charstatus));
|
||||
WFIFOW(fd,0) = 0x2afd;
|
||||
WFIFOW(fd,2) = 20 + sizeof(struct mmo_charstatus);
|
||||
|
Loading…
x
Reference in New Issue
Block a user