aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.cs
diff options
context:
space:
mode:
authorDiva Canto2009-08-16 17:11:20 -0700
committerDiva Canto2009-08-16 17:11:20 -0700
commit5d47e08dada2b4de1170b9adb4cca5cd51593cc9 (patch)
tree8ff013f53954afb5ba530b7175896a85b082e2a0 /OpenSim/Region/Framework/Scenes/Scene.cs
parentMaking attachments work again. Tons of debug more. This needs more testing an... (diff)
downloadopensim-SC_OLD-5d47e08dada2b4de1170b9adb4cca5cd51593cc9.zip
opensim-SC_OLD-5d47e08dada2b4de1170b9adb4cca5cd51593cc9.tar.gz
opensim-SC_OLD-5d47e08dada2b4de1170b9adb4cca5cd51593cc9.tar.bz2
opensim-SC_OLD-5d47e08dada2b4de1170b9adb4cca5cd51593cc9.tar.xz
Removed some debug messages
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index f475c64..d1f7a4b 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -2052,8 +2052,10 @@ namespace OpenSim.Region.Framework.Scenes
2052 2052
2053 ScenePresence sp = CreateAndAddScenePresence(client); 2053 ScenePresence sp = CreateAndAddScenePresence(client);
2054 2054
2055 // HERE!!! Do the initial attachments here 2055 // HERE!!! Do the initial attachments right here
2056 if (aCircuit.child == false) // first agent upon login is root agent 2056 // first agent upon login is a root agent by design.
2057 // All other AddNewClient calls find aCircuit.child to be true
2058 if (aCircuit.child == false)
2057 { 2059 {
2058 sp.IsChildAgent = false; 2060 sp.IsChildAgent = false;
2059 sp.RezAttachments(); 2061 sp.RezAttachments();