diff options
-rw-r--r-- | Changelog-Trunk.txt | 1 | ||||
-rw-r--r-- | src/char/char.c | 2 | ||||
-rw-r--r-- | src/char_sql/char.c | 2 |
3 files changed, 5 insertions, 0 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index fb10c6db7..dbc8324f6 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -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] diff --git a/src/char/char.c b/src/char/char.c index b35e46c9f..9a1a87bee 100644 --- a/src/char/char.c +++ b/src/char/char.c @@ -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); diff --git a/src/char_sql/char.c b/src/char_sql/char.c index 2eca9b929..8a7a2ebd9 100644 --- a/src/char_sql/char.c +++ b/src/char_sql/char.c @@ -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); |