mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 09:16:28 +08:00
One more thing to test in order to let CompleteMovement go up the stack.
This commit is contained in:
@@ -1635,9 +1635,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||
bool ready = false;
|
||||
while (!ready && count-- > 0)
|
||||
{
|
||||
if (m_scene.TryGetClient(endPoint, out client) && client.IsActive)
|
||||
if (m_scene.TryGetClient(endPoint, out client) && client.IsActive && client.SceneAgent != null)
|
||||
{
|
||||
LLUDPClient udpClient = ((LLClientView)client).UDPClient;
|
||||
LLClientView llClientView = (LLClientView)client;
|
||||
LLUDPClient udpClient = llClientView.UDPClient;
|
||||
if (udpClient != null && udpClient.IsConnected)
|
||||
ready = true;
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user