summaryrefslogtreecommitdiff
path: root/src/account-server/serverhandler.cpp
diff options
context:
space:
mode:
authorGuillaume Melquiond <guillaume.melquiond@gmail.com>2007-09-23 14:08:21 +0000
committerGuillaume Melquiond <guillaume.melquiond@gmail.com>2007-09-23 14:08:21 +0000
commit0d00b4e7f49a0373d350353e62e08cdd903628e9 (patch)
tree6e2d50e6f19b08288c1463119c3d72508c77d8ff /src/account-server/serverhandler.cpp
parent5618f4890df5eb9ea91eb73a7a7dd7df745863a6 (diff)
downloadmanaserv-0d00b4e7f49a0373d350353e62e08cdd903628e9.tar.gz
manaserv-0d00b4e7f49a0373d350353e62e08cdd903628e9.tar.bz2
manaserv-0d00b4e7f49a0373d350353e62e08cdd903628e9.tar.xz
manaserv-0d00b4e7f49a0373d350353e62e08cdd903628e9.zip
Simplified interface of the connection handler used for clients of the account server.
Diffstat (limited to 'src/account-server/serverhandler.cpp')
-rw-r--r--src/account-server/serverhandler.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/account-server/serverhandler.cpp b/src/account-server/serverhandler.cpp
index 39e63c6e..d5d9d5a9 100644
--- a/src/account-server/serverhandler.cpp
+++ b/src/account-server/serverhandler.cpp
@@ -212,8 +212,7 @@ void ServerHandler::processMessage(NetComputer *comp, MessageIn &msg)
if (Character *ptr = storage->getCharacter(id, NULL))
{
int accountID = ptr->getAccountID();
- accountHandler->
- mTokenCollector.addPendingConnect(magic_token, accountID);
+ AccountClientHandler::prepareReconnect(magic_token, accountID);
delete ptr;
}
else