aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-10-24 22:23:41 +0100
committerJustin Clark-Casey (justincc)2011-10-24 22:23:41 +0100
commite28e2d24c714c3fba1cba60097986a1c1c28c6c0 (patch)
tree971e101867b0ac09836854553d236a0651df3a40 /OpenSim/Region/Framework/Scenes/Scene.cs
parentAdd optional getauthinfo and setauthinfo authentication service calls. (diff)
downloadopensim-SC_OLD-e28e2d24c714c3fba1cba60097986a1c1c28c6c0.zip
opensim-SC_OLD-e28e2d24c714c3fba1cba60097986a1c1c28c6c0.tar.gz
opensim-SC_OLD-e28e2d24c714c3fba1cba60097986a1c1c28c6c0.tar.bz2
opensim-SC_OLD-e28e2d24c714c3fba1cba60097986a1c1c28c6c0.tar.xz
Add new EventQueueTests with basic test to check that adding a client registers an http poll
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index 894d8d2..e43185d 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -2561,7 +2561,9 @@ namespace OpenSim.Region.Framework.Scenes
2561 if (aCircuit.child == false) 2561 if (aCircuit.child == false)
2562 { 2562 {
2563 sp.IsChildAgent = false; 2563 sp.IsChildAgent = false;
2564 Util.FireAndForget(delegate(object o) { AttachmentsModule.RezAttachments(sp); }); 2564
2565 if (AttachmentsModule != null)
2566 Util.FireAndForget(delegate(object o) { AttachmentsModule.RezAttachments(sp); });
2565 } 2567 }
2566 } 2568 }
2567 2569