mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 18:25:33 +08:00
Added a very very very basic Web front end for admin use - ready to be used in sandbox mode for adding new accounts.
This commit is contained in:
@@ -57,6 +57,16 @@ namespace OpenSim.Assets
|
||||
this._agentsInventory.Add(agentInventory.AgentID, agentInventory);
|
||||
}
|
||||
|
||||
public AgentInventory GetAgentsInventory(LLUUID agentID)
|
||||
{
|
||||
if (this._agentsInventory.ContainsKey(agentID))
|
||||
{
|
||||
return this._agentsInventory[agentID];
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
public void ClientLeaving(LLUUID clientID)
|
||||
{
|
||||
if (this._agentsInventory.ContainsKey(clientID))
|
||||
|
||||
Reference in New Issue
Block a user