git-svn-id: https://svn.code.sf.net/p/rathena/svn/branches/stable@530 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
amber 2004-12-10 06:07:36 +00:00
parent f85d536c8e
commit ca70f411c7
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,7 @@
Date Added Date Added
12/9 12/9
* Fixed how players are cleaned up when they disconnected
during authentication [MouseJstr]
* Adjusted some messages in @marry [MouseJstr] * Adjusted some messages in @marry [MouseJstr]
* Skill Updates [celest] * Skill Updates [celest]
- Fixed Auto Spell not working - Fixed Auto Spell not working

View File

@ -10111,7 +10111,8 @@ static int clif_parse(int fd) {
printf("Player with account [%d] has logged off your server.\n", sd->bl.id); // Player logout display [Yor] printf("Player with account [%d] has logged off your server.\n", sd->bl.id); // Player logout display [Yor]
} else if (sd) { // not authentified! (refused by char-server or disconnect before to be authentified) } else if (sd) { // not authentified! (refused by char-server or disconnect before to be authentified)
printf("Player with account [%d] has logged off your server (not auth account).\n", sd->bl.id); // Player logout display [Yor] printf("Player with account [%d] has logged off your server (not auth account).\n", sd->bl.id); // Player logout display [Yor]
map_deliddb(&sd->bl); // account_id has been included in the DB before auth answer if (chrif_isconnect())
clif_quitsave(fd, sd);
sd = 0; sd = 0;
} }
close(fd); close(fd);