mirror of
https://github.com/opensim/opensim.git
synced 2026-08-03 15:36:16 +08:00
viewers do caps before knowing where they are. Tell them to take a walk and try later on 2 cases
This commit is contained in:
@@ -307,6 +307,14 @@ namespace OpenSim.Region.ClientStack.Linden
|
||||
return;
|
||||
}
|
||||
|
||||
ScenePresence sp = m_scene.GetScenePresence(agentID);
|
||||
if (sp == null)
|
||||
{
|
||||
response.StatusCode = (int)HttpStatusCode.ServiceUnavailable;
|
||||
response.AddHeader("Retry-After", "5");
|
||||
return;
|
||||
}
|
||||
|
||||
OSDMap copy = DeepCopy();
|
||||
|
||||
// Let's add the agentID to the destination guide, if it is expecting that.
|
||||
|
||||
Reference in New Issue
Block a user