aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework
diff options
context:
space:
mode:
authorMelanie2011-10-25 03:26:20 +0100
committerMelanie2011-10-25 03:26:20 +0100
commit740077a291dbd95dcf5e8e57561443522dabb72f (patch)
tree533ed10fa917a274e98aff1a299e993b8e4d9084 /OpenSim/Region/Framework
parentMerge commit '4c9400e6460a73baa2d687afe73a62c6efca9f37' into bigmerge (diff)
parentAdd new EventQueueTests with basic test to check that adding a client registe... (diff)
downloadopensim-SC_OLD-740077a291dbd95dcf5e8e57561443522dabb72f.zip
opensim-SC_OLD-740077a291dbd95dcf5e8e57561443522dabb72f.tar.gz
opensim-SC_OLD-740077a291dbd95dcf5e8e57561443522dabb72f.tar.bz2
opensim-SC_OLD-740077a291dbd95dcf5e8e57561443522dabb72f.tar.xz
Merge commit 'e28e2d24c714c3fba1cba60097986a1c1c28c6c0' into bigmerge
Diffstat (limited to 'OpenSim/Region/Framework')
-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 6a11353..8c7ce24 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -2672,7 +2672,9 @@ namespace OpenSim.Region.Framework.Scenes
2672 if (aCircuit.child == false) 2672 if (aCircuit.child == false)
2673 { 2673 {
2674 sp.IsChildAgent = false; 2674 sp.IsChildAgent = false;
2675 Util.FireAndForget(delegate(object o) { AttachmentsModule.RezAttachments(sp); }); 2675
2676 if (AttachmentsModule != null)
2677 Util.FireAndForget(delegate(object o) { AttachmentsModule.RezAttachments(sp); });
2676 } 2678 }
2677 } 2679 }
2678 2680