root/trunk/AE-go_GameServer/src/com/aionemu/gameserver/network/loginserver/LoginServer.java

425991
299
	{
299
	{
300
		synchronized(this)
300
		synchronized(this)
301
		{
301
		{
302
			AionConnection client = loginRequests.get(accountId);
302
			AionConnection client = loggedInAccounts.get(accountId);
303
			if(client != null)
303
			if(client != null)
304
				client.close(/* closePacket, */false);
304
				client.close(/* closePacket, */false);
305
			/**
305
			/**