aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.cs
diff options
context:
space:
mode:
authorMelanie2012-03-27 20:03:41 +0100
committerMelanie2012-03-27 20:03:41 +0100
commita619621c60467ad40119205b9e00ea0792d6fbb3 (patch)
tree16516c63ae12e1747e846c162a8907040532d27a /OpenSim/Region/Framework/Scenes/Scene.cs
parentMerge branch 'master' into careminster (diff)
parentHG: beginning of a more restrictive inventory access procedure (optional). Ex... (diff)
downloadopensim-SC_OLD-a619621c60467ad40119205b9e00ea0792d6fbb3.zip
opensim-SC_OLD-a619621c60467ad40119205b9e00ea0792d6fbb3.tar.gz
opensim-SC_OLD-a619621c60467ad40119205b9e00ea0792d6fbb3.tar.bz2
opensim-SC_OLD-a619621c60467ad40119205b9e00ea0792d6fbb3.tar.xz
Merge branch 'master' into careminster
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index 6ac7846..fc1034d 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -2800,6 +2800,14 @@ namespace OpenSim.Region.Framework.Scenes
2800 // Cache the user's name 2800 // Cache the user's name
2801 CacheUserName(sp, aCircuit); 2801 CacheUserName(sp, aCircuit);
2802 2802
2803 // Let's send the Suitcase folder for incoming HG agents
2804 if ((aCircuit.teleportFlags & (uint)Constants.TeleportFlags.ViaHGLogin) != 0)
2805 {
2806 m_log.DebugFormat("[SCENE]: Sending root folder to viewer...");
2807 InventoryFolderBase suitcase = InventoryService.GetRootFolder(client.AgentId);
2808 client.SendBulkUpdateInventory(suitcase);
2809 }
2810
2803 EventManager.TriggerOnNewClient(client); 2811 EventManager.TriggerOnNewClient(client);
2804 if (vialogin) 2812 if (vialogin)
2805 { 2813 {