aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
index 6d0927b..69bc554 100644
--- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
@@ -1116,13 +1116,13 @@ namespace OpenSim.Region.Framework.Scenes
1116 scriptScore = 0; 1116 scriptScore = 0;
1117 1117
1118 scriptScore += (float)count; 1118 scriptScore += (float)count;
1119 SceneGraph d = m_scene.m_sceneGraph; 1119 SceneGraph d = m_scene.SceneGraph;
1120 d.AddToScriptLPS(count); 1120 d.AddToScriptLPS(count);
1121 } 1121 }
1122 1122
1123 public void AddActiveScriptCount(int count) 1123 public void AddActiveScriptCount(int count)
1124 { 1124 {
1125 SceneGraph d = m_scene.m_sceneGraph; 1125 SceneGraph d = m_scene.SceneGraph;
1126 d.AddActiveScripts(count); 1126 d.AddActiveScripts(count);
1127 } 1127 }
1128 1128
@@ -1858,7 +1858,7 @@ namespace OpenSim.Region.Framework.Scenes
1858 { 1858 {
1859 if (m_scene == null) // Need to check here as it's null during object creation 1859 if (m_scene == null) // Need to check here as it's null during object creation
1860 return; 1860 return;
1861 m_scene.m_sceneGraph.AddToUpdateList(this); 1861 m_scene.SceneGraph.AddToUpdateList(this);
1862 } 1862 }
1863 1863
1864 /// <summary> 1864 /// <summary>