diff options
author | Paradox924X <Paradox924X@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-08-29 03:17:54 +0000 |
---|---|---|
committer | Paradox924X <Paradox924X@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-08-29 03:17:54 +0000 |
commit | 36ea9e9c13d9f29203ba8c85a7f751f2433f5950 (patch) | |
tree | 3958363d7189219922b44ce52b64df9310ec9378 /src/map/chrif.c | |
parent | 458fb6a34f3cb970c298c868f4f2cd40a85807fd (diff) | |
download | hercules-36ea9e9c13d9f29203ba8c85a7f751f2433f5950.tar.gz hercules-36ea9e9c13d9f29203ba8c85a7f751f2433f5950.tar.bz2 hercules-36ea9e9c13d9f29203ba8c85a7f751f2433f5950.tar.xz hercules-36ea9e9c13d9f29203ba8c85a7f751f2433f5950.zip |
Force a map_quit() call on the session data after a block/ban/changesex/acc deletion to remove leftovers of a player's session caused by when the fd has already been set to eof (player is not connected) but session data is kept (e.g. autotrading).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14398 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/chrif.c')
-rw-r--r-- | src/map/chrif.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/chrif.c b/src/map/chrif.c index 73549bf2b..40e7ca8d1 100644 --- a/src/map/chrif.c +++ b/src/map/chrif.c @@ -865,6 +865,7 @@ int chrif_changedsex(int fd) // do same modify in login-server for the account, but no in char-server (it ask again login_id1 to login, and don't remember it) clif_displaymessage(sd->fd, "Your sex has been changed (need disconnection by the server)..."); set_eof(sd->fd); // forced to disconnect for the change + map_quit(sd); // Remove leftovers (e.g. autotrading) [Paradox924X] } return 0; } @@ -958,6 +959,7 @@ int chrif_accountdeletion(int fd) sd->login_id1++; // change identify, because if player come back in char within the 5 seconds, he can change its characters clif_displaymessage(sd->fd, "Your account has been deleted (disconnection)..."); set_eof(sd->fd); // forced to disconnect for the change + map_quit(sd); // Remove leftovers (e.g. autotrading) [Paradox924X] } } else { if (sd != NULL) @@ -1013,6 +1015,7 @@ int chrif_accountban(int fd) } set_eof(sd->fd); // forced to disconnect for the change + map_quit(sd); // Remove leftovers (e.g. autotrading) [Paradox924X] return 0; } |