aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneObject(Old).cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneObject(Old).cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/SceneObject(Old).cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObject(Old).cs b/OpenSim/Region/Environment/Scenes/SceneObject(Old).cs
index 882b72e..f32c952 100644
--- a/OpenSim/Region/Environment/Scenes/SceneObject(Old).cs
+++ b/OpenSim/Region/Environment/Scenes/SceneObject(Old).cs
@@ -92,7 +92,7 @@ namespace OpenSim.Region.Environment.Scenes
92 m_scene = world; 92 m_scene = world;
93 m_eventManager = eventManager; 93 m_eventManager = eventManager;
94 94
95 this.Pos = pos; 95 this.AbsolutePosition = pos;
96 this.CreateRootFromShape(ownerID, localID, shape, pos); 96 this.CreateRootFromShape(ownerID, localID, shape, pos);
97 97
98 registerEvents(); 98 registerEvents();
@@ -176,7 +176,7 @@ namespace OpenSim.Region.Environment.Scenes
176 dupe.rootPrimitive = newRoot; 176 dupe.rootPrimitive = newRoot;
177 177
178 dupe.m_children.Add(dupe.rootPrimitive); 178 dupe.m_children.Add(dupe.rootPrimitive);
179 dupe.rootPrimitive.Pos = this.Pos; 179 dupe.rootPrimitive.AbsolutePosition = this.AbsolutePosition;
180 dupe.Rotation = this.Rotation; 180 dupe.Rotation = this.Rotation;
181 dupe.LocalId = m_scene.PrimIDAllocate(); 181 dupe.LocalId = m_scene.PrimIDAllocate();
182 182
@@ -274,7 +274,7 @@ namespace OpenSim.Region.Environment.Scenes
274 /// <param name="remoteClient"></param> 274 /// <param name="remoteClient"></param>
275 public void GrapMovement(LLVector3 offset, LLVector3 pos, IClientAPI remoteClient) 275 public void GrapMovement(LLVector3 offset, LLVector3 pos, IClientAPI remoteClient)
276 { 276 {
277 this.rootPrimitive.Pos = pos; 277 this.rootPrimitive.AbsolutePosition = pos;
278 this.rootPrimitive.SendTerseUpdateForAllChildren(remoteClient); 278 this.rootPrimitive.SendTerseUpdateForAllChildren(remoteClient);
279 } 279 }
280 280