Reinstate closing the client if CloseAgen returns false. This was part

of the last Ubit patch.
avinationmerge
Melanie Thielker 2014-09-14 20:46:22 +02:00
parent 3d9f25a19d
commit d43d3df724
1 changed files with 2 additions and 1 deletions

View File

@ -2063,7 +2063,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
client.Kick("Simulator logged you out due to connection timeout.");
}
m_scene.CloseAgent(client.AgentId, true);
if (!m_scene.CloseAgent(client.AgentId, true))
client.Close(true,true);
}
private void IncomingPacketHandler()