diff options
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index ab7fd5b..e8aa52e 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -2138,9 +2138,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
2138 | forceMouselook = part.GetForceMouselook(); | 2138 | forceMouselook = part.GetForceMouselook(); |
2139 | 2139 | ||
2140 | ControllingClient.SendSitResponse( | 2140 | ControllingClient.SendSitResponse( |
2141 | targetID, offset, sitOrientation, false, cameraAtOffset, cameraEyeOffset, forceMouselook); | 2141 | part.UUID, offset, sitOrientation, false, cameraAtOffset, cameraEyeOffset, forceMouselook); |
2142 | 2142 | ||
2143 | m_requestedSitTargetUUID = targetID; | 2143 | m_requestedSitTargetUUID = part.UUID; |
2144 | 2144 | ||
2145 | HandleAgentSit(ControllingClient, UUID); | 2145 | HandleAgentSit(ControllingClient, UUID); |
2146 | 2146 | ||
@@ -2165,7 +2165,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2165 | if (part != null) | 2165 | if (part != null) |
2166 | { | 2166 | { |
2167 | m_requestedSitTargetID = part.LocalId; | 2167 | m_requestedSitTargetID = part.LocalId; |
2168 | m_requestedSitTargetUUID = targetID; | 2168 | m_requestedSitTargetUUID = part.UUID; |
2169 | 2169 | ||
2170 | // m_log.DebugFormat("[SIT]: Client requested Sit Position: {0}", offset); | 2170 | // m_log.DebugFormat("[SIT]: Client requested Sit Position: {0}", offset); |
2171 | 2171 | ||