Didn't want to get left behind in the number of commits, and hey it says there are some differences between my local copy and svn, so why not commit?
parent
60639337bd
commit
4f26cf8ea2
|
@ -49,6 +49,7 @@ namespace OpenSim.Framework.User
|
|||
|
||||
CurrentSecureSessionID = new LLUUID(randDataSS,0);
|
||||
CurrentSessionID = new LLUUID(randDataS,0);
|
||||
|
||||
}
|
||||
|
||||
public void AddSimCircuit(uint circuitCode, LLUUID regionUUID)
|
||||
|
|
|
@ -82,9 +82,7 @@ namespace OpenSim
|
|||
this.AgentCircuits[(uint)agentData.circuitcode].lastname = agentData.lastname;
|
||||
this.AgentCircuits[(uint)agentData.circuitcode].startpos = agentData.startpos;
|
||||
// Console.WriteLine("update user start pos is " + agentData.startpos.X + " , " + agentData.startpos.Y + " , " + agentData.startpos.Z);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public void UpdateAgentChildStatus(uint circuitcode, bool childstatus)
|
||||
|
@ -92,7 +90,6 @@ namespace OpenSim
|
|||
if (this.AgentCircuits.ContainsKey(circuitcode))
|
||||
{
|
||||
this.AgentCircuits[circuitcode].child = childstatus;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -101,7 +98,6 @@ namespace OpenSim
|
|||
if (this.AgentCircuits.ContainsKey(circuitcode))
|
||||
{
|
||||
return this.AgentCircuits[circuitcode].child;
|
||||
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -144,7 +144,6 @@ namespace OpenSim
|
|||
# region Client Methods
|
||||
public void UpgradeClient()
|
||||
{
|
||||
Console.WriteLine("updateclient being called");
|
||||
OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "SimClient.cs:UpgradeClient() - upgrading child to full agent");
|
||||
this.m_child = false;
|
||||
this.m_world.RemoveViewerAgent(this);
|
||||
|
|
Loading…
Reference in New Issue