aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim.RegionServer/Assets
diff options
context:
space:
mode:
authorMW2007-03-26 16:51:50 +0000
committerMW2007-03-26 16:51:50 +0000
commit42ba0712765b93f652a8671269e39ca647b8d05e (patch)
treed76c780eb4ec1aff0b5485e19f9b3e49bf6b938c /OpenSim.RegionServer/Assets
parent* Added Prebuild exe (just delete the old one) (diff)
downloadopensim-SC_OLD-42ba0712765b93f652a8671269e39ca647b8d05e.zip
opensim-SC_OLD-42ba0712765b93f652a8671269e39ca647b8d05e.tar.gz
opensim-SC_OLD-42ba0712765b93f652a8671269e39ca647b8d05e.tar.bz2
opensim-SC_OLD-42ba0712765b93f652a8671269e39ca647b8d05e.tar.xz
Added a very very very basic Web front end for admin use - ready to be used in sandbox mode for adding new accounts.
Diffstat (limited to 'OpenSim.RegionServer/Assets')
-rw-r--r--OpenSim.RegionServer/Assets/InventoryCache.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim.RegionServer/Assets/InventoryCache.cs b/OpenSim.RegionServer/Assets/InventoryCache.cs
index f50047a..3a4aa36 100644
--- a/OpenSim.RegionServer/Assets/InventoryCache.cs
+++ b/OpenSim.RegionServer/Assets/InventoryCache.cs
@@ -57,6 +57,16 @@ namespace OpenSim.Assets
57 this._agentsInventory.Add(agentInventory.AgentID, agentInventory); 57 this._agentsInventory.Add(agentInventory.AgentID, agentInventory);
58 } 58 }
59 59
60 public AgentInventory GetAgentsInventory(LLUUID agentID)
61 {
62 if (this._agentsInventory.ContainsKey(agentID))
63 {
64 return this._agentsInventory[agentID];
65 }
66
67 return null;
68 }
69
60 public void ClientLeaving(LLUUID clientID) 70 public void ClientLeaving(LLUUID clientID)
61 { 71 {
62 if (this._agentsInventory.ContainsKey(clientID)) 72 if (this._agentsInventory.ContainsKey(clientID))