aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/ScenePresence.cs
diff options
context:
space:
mode:
authorlbsa712008-07-26 21:22:15 +0000
committerlbsa712008-07-26 21:22:15 +0000
commit8e869b2ffffac0cf2625d23b35b6fb5ac9d2ae41 (patch)
tree6dedebe2263033b81a9df093fc22c86853fd83e3 /OpenSim/Region/Environment/Scenes/ScenePresence.cs
parentModified ResetChildPrimPhysicsPositions() to allow archiving and physics to c... (diff)
downloadopensim-SC_OLD-8e869b2ffffac0cf2625d23b35b6fb5ac9d2ae41.zip
opensim-SC_OLD-8e869b2ffffac0cf2625d23b35b6fb5ac9d2ae41.tar.gz
opensim-SC_OLD-8e869b2ffffac0cf2625d23b35b6fb5ac9d2ae41.tar.bz2
opensim-SC_OLD-8e869b2ffffac0cf2625d23b35b6fb5ac9d2ae41.tar.xz
* Changed a number of field names to ccc (public members shouldn't be called m_)
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/ScenePresence.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/ScenePresence.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Scenes/ScenePresence.cs b/OpenSim/Region/Environment/Scenes/ScenePresence.cs
index 57b717c..b24ee8a 100644
--- a/OpenSim/Region/Environment/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Environment/Scenes/ScenePresence.cs
@@ -2293,8 +2293,8 @@ namespace OpenSim.Region.Environment.Scenes
2293 { 2293 {
2294 // Set the parent localID to 0 so it transfers over properly. 2294 // Set the parent localID to 0 so it transfers over properly.
2295 gobj.RootPart.SetParentLocalId(0); 2295 gobj.RootPart.SetParentLocalId(0);
2296 gobj.RootPart.m_IsAttachment = false; 2296 gobj.RootPart.IsAttachment = false;
2297 gobj.AbsolutePosition = gobj.RootPart.m_attachedPos; 2297 gobj.AbsolutePosition = gobj.RootPart.AttachedPos;
2298 gobj.RootPart.LastOwnerID = gobj.GetFromAssetID(); 2298 gobj.RootPart.LastOwnerID = gobj.GetFromAssetID();
2299 m_scene.CrossPrimGroupIntoNewRegion(regionHandle, gobj); 2299 m_scene.CrossPrimGroupIntoNewRegion(regionHandle, gobj);
2300 } 2300 }