aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneGraph.cs
diff options
context:
space:
mode:
authorSean Dague2008-11-20 00:13:15 +0000
committerSean Dague2008-11-20 00:13:15 +0000
commite6f92044caa8f66fd0a04019b9edcd30eb389920 (patch)
treeee7c5ca8013feeaf286e2fb33d6a60a567405ab1 /OpenSim/Region/Environment/Scenes/SceneGraph.cs
parentMantis#2658. Thank you kindly, StrawberryFride for a patch that: (diff)
downloadopensim-SC_OLD-e6f92044caa8f66fd0a04019b9edcd30eb389920.zip
opensim-SC_OLD-e6f92044caa8f66fd0a04019b9edcd30eb389920.tar.gz
opensim-SC_OLD-e6f92044caa8f66fd0a04019b9edcd30eb389920.tar.bz2
opensim-SC_OLD-e6f92044caa8f66fd0a04019b9edcd30eb389920.tar.xz
From: Christopher Yeoh <cyeoh@au1.ibm.com>
Attached is a patch which fixes mantis bug 2645 where scripts in child prims freeze after being unlinked from the root prim. This got introduced some time after the 0.6 freeze. Have checked test suites pass even after nant clean ;-) http://opensimulator.org/mantis/bug_update_page.php?bug_id=2645 Also removes a redundant ResetIDs call Regards, Chris
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Scenes/SceneGraph.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneGraph.cs b/OpenSim/Region/Environment/Scenes/SceneGraph.cs
index ab0ec1f..18fe151 100644
--- a/OpenSim/Region/Environment/Scenes/SceneGraph.cs
+++ b/OpenSim/Region/Environment/Scenes/SceneGraph.cs
@@ -1669,7 +1669,6 @@ namespace OpenSim.Region.Environment.Scenes
1669 { 1669 {
1670 SceneObjectGroup copy = originPrim.Copy(AgentID, GroupID, true); 1670 SceneObjectGroup copy = originPrim.Copy(AgentID, GroupID, true);
1671 copy.AbsolutePosition = copy.AbsolutePosition + offset; 1671 copy.AbsolutePosition = copy.AbsolutePosition + offset;
1672 copy.ResetIDs();
1673 1672
1674 lock (Entities) 1673 lock (Entities)
1675 { 1674 {