diff options
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs index d412702..3e816fc 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | |||
@@ -1146,7 +1146,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1146 | // the mappings more consistant. | 1146 | // the mappings more consistant. |
1147 | public Vector3 SitTargetPositionLL | 1147 | public Vector3 SitTargetPositionLL |
1148 | { | 1148 | { |
1149 | get { return new Vector3(m_sitTargetPosition.X, m_sitTargetPosition.Y,m_sitTargetPosition.Z); } | 1149 | get { return m_sitTargetPosition; } |
1150 | set { m_sitTargetPosition = value; } | 1150 | set { m_sitTargetPosition = value; } |
1151 | } | 1151 | } |
1152 | 1152 | ||