aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneObjectPart.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
index 48ee6ea..397febe 100644
--- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
@@ -1218,7 +1218,7 @@ namespace OpenSim.Region.Framework.Scenes
1218 // the mappings more consistant. 1218 // the mappings more consistant.
1219 public Vector3 SitTargetPositionLL 1219 public Vector3 SitTargetPositionLL
1220 { 1220 {
1221 get { return new Vector3(m_sitTargetPosition.X, m_sitTargetPosition.Y,m_sitTargetPosition.Z); } 1221 get { return m_sitTargetPosition; }
1222 set { m_sitTargetPosition = value; } 1222 set { m_sitTargetPosition = value; }
1223 } 1223 }
1224 1224