Reinstate closing the client if CloseAgen returns false. This was part
of the last Ubit patch.avinationmerge
parent
3d9f25a19d
commit
d43d3df724
|
@ -2063,7 +2063,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
client.Kick("Simulator logged you out due to connection timeout.");
|
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()
|
private void IncomingPacketHandler()
|
||||||
|
|
Loading…
Reference in New Issue