aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.cs
diff options
context:
space:
mode:
authorUbitUmarov2013-09-19 11:33:38 +0100
committerUbitUmarov2013-09-19 11:33:38 +0100
commit8ad7f2ce2d1c9197baf72d52ad4c4a818d0bfe43 (patch)
tree6b1124f8176b2977f03a067bc04da0266ac9c7c3 /OpenSim/Region/Framework/Scenes/Scene.cs
parentMerge branch 'avination-current' of ssh://3dhosting.de/var/git/careminster in... (diff)
parentMono 2.0 fix - call ToArray() explicitly (diff)
downloadopensim-SC_OLD-8ad7f2ce2d1c9197baf72d52ad4c4a818d0bfe43.zip
opensim-SC_OLD-8ad7f2ce2d1c9197baf72d52ad4c4a818d0bfe43.tar.gz
opensim-SC_OLD-8ad7f2ce2d1c9197baf72d52ad4c4a818d0bfe43.tar.bz2
opensim-SC_OLD-8ad7f2ce2d1c9197baf72d52ad4c4a818d0bfe43.tar.xz
Merge branch 'avination-current' of ssh://3dhosting.de/var/git/careminster into avination-current
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-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 2b58795..b189599 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -2802,8 +2802,10 @@ namespace OpenSim.Region.Framework.Scenes
2802 newObject.RootPart.ParentGroup.CreateScriptInstances(0, false, DefaultScriptEngine, GetStateSource(newObject)); 2802 newObject.RootPart.ParentGroup.CreateScriptInstances(0, false, DefaultScriptEngine, GetStateSource(newObject));
2803 newObject.ResumeScripts(); 2803 newObject.ResumeScripts();
2804 2804
2805 if (newObject.RootPart.KeyframeMotion != null) 2805 // AddSceneObject already does this and doing it again messes
2806 newObject.RootPart.KeyframeMotion.UpdateSceneObject(newObject); 2806 // up region crossings, so don't.
2807 //if (newObject.RootPart.KeyframeMotion != null)
2808 // newObject.RootPart.KeyframeMotion.UpdateSceneObject(newObject);
2807 } 2809 }
2808 2810
2809 // Do this as late as possible so that listeners have full access to the incoming object 2811 // Do this as late as possible so that listeners have full access to the incoming object