* Fixed an annoying pop-up box when crossing borders.
parent
1909d74d5f
commit
12bba3da4b
|
@ -258,9 +258,17 @@ namespace OpenSim.Region.Environment.Modules
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
bool childYN = true;
|
||||||
|
ScenePresence agent = null;
|
||||||
//client.SecureSessionId;
|
//client.SecureSessionId;
|
||||||
Scene s = GetRandomScene();
|
Scene s = LocateSceneClientIn(client.AgentId);
|
||||||
if (s != null)
|
if (s != null)
|
||||||
|
{
|
||||||
|
agent = s.GetScenePresence(client.AgentId);
|
||||||
|
if (agent != null)
|
||||||
|
childYN = agent.IsChildAgent;
|
||||||
|
}
|
||||||
|
if (s != null && agent != null && childYN == false)
|
||||||
{
|
{
|
||||||
//s.RegionInfo.RegionHandle;
|
//s.RegionInfo.RegionHandle;
|
||||||
LLUUID agentID = LLUUID.Zero;
|
LLUUID agentID = LLUUID.Zero;
|
||||||
|
@ -846,7 +854,7 @@ namespace OpenSim.Region.Environment.Modules
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
throw new Exception("Unable to get funds.");
|
//throw new Exception("Unable to get funds.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return returnfunds;
|
return returnfunds;
|
||||||
|
|
Loading…
Reference in New Issue