aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.cs
diff options
context:
space:
mode:
authorMelanie2010-10-06 19:59:30 +0200
committerMelanie2010-10-06 19:59:30 +0200
commit42f76773a15d83fd31f249cc4a21985184b0cdbf (patch)
tree26b1096beea348dbc1304d24d13087d5f14ab5d4 /OpenSim/Region/Framework/Scenes/Scene.cs
parentMerge branch 'master' into careminster-presence-refactor (diff)
downloadopensim-SC_OLD-42f76773a15d83fd31f249cc4a21985184b0cdbf.zip
opensim-SC_OLD-42f76773a15d83fd31f249cc4a21985184b0cdbf.tar.gz
opensim-SC_OLD-42f76773a15d83fd31f249cc4a21985184b0cdbf.tar.bz2
opensim-SC_OLD-42f76773a15d83fd31f249cc4a21985184b0cdbf.tar.xz
Plumb the path for multiple object deletes
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index e835281..bcc439c 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -2823,7 +2823,7 @@ namespace OpenSim.Region.Framework.Scenes
2823 client.OnGrabUpdate += m_sceneGraph.MoveObject; 2823 client.OnGrabUpdate += m_sceneGraph.MoveObject;
2824 client.OnSpinStart += m_sceneGraph.SpinStart; 2824 client.OnSpinStart += m_sceneGraph.SpinStart;
2825 client.OnSpinUpdate += m_sceneGraph.SpinObject; 2825 client.OnSpinUpdate += m_sceneGraph.SpinObject;
2826 client.OnDeRezObject += DeRezObject; 2826 client.OnDeRezObject += DeRezObjects;
2827 2827
2828 client.OnObjectName += m_sceneGraph.PrimName; 2828 client.OnObjectName += m_sceneGraph.PrimName;
2829 client.OnObjectClickAction += m_sceneGraph.PrimClickAction; 2829 client.OnObjectClickAction += m_sceneGraph.PrimClickAction;
@@ -2953,7 +2953,7 @@ namespace OpenSim.Region.Framework.Scenes
2953 client.OnGrabUpdate -= m_sceneGraph.MoveObject; 2953 client.OnGrabUpdate -= m_sceneGraph.MoveObject;
2954 client.OnSpinStart -= m_sceneGraph.SpinStart; 2954 client.OnSpinStart -= m_sceneGraph.SpinStart;
2955 client.OnSpinUpdate -= m_sceneGraph.SpinObject; 2955 client.OnSpinUpdate -= m_sceneGraph.SpinObject;
2956 client.OnDeRezObject -= DeRezObject; 2956 client.OnDeRezObject -= DeRezObjects;
2957 client.OnObjectName -= m_sceneGraph.PrimName; 2957 client.OnObjectName -= m_sceneGraph.PrimName;
2958 client.OnObjectClickAction -= m_sceneGraph.PrimClickAction; 2958 client.OnObjectClickAction -= m_sceneGraph.PrimClickAction;
2959 client.OnObjectMaterial -= m_sceneGraph.PrimMaterial; 2959 client.OnObjectMaterial -= m_sceneGraph.PrimMaterial;