refactor: use sit orientation argument passed in to SP.SendSitResponse() rather than creating a new copy
There are no issues with side-effects since this is a struct.0.7.4.1
parent
e8347b7095
commit
69a6f6e3cd
|
@ -1857,10 +1857,8 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
return targetPart;
|
return targetPart;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SendSitResponse(UUID targetID, Vector3 offset, Quaternion pSitOrientation)
|
private void SendSitResponse(UUID targetID, Vector3 offset, Quaternion sitOrientation)
|
||||||
{
|
{
|
||||||
Vector3 pos = new Vector3();
|
|
||||||
Quaternion sitOrientation = pSitOrientation;
|
|
||||||
Vector3 cameraEyeOffset = Vector3.Zero;
|
Vector3 cameraEyeOffset = Vector3.Zero;
|
||||||
Vector3 cameraAtOffset = Vector3.Zero;
|
Vector3 cameraAtOffset = Vector3.Zero;
|
||||||
bool forceMouselook = false;
|
bool forceMouselook = false;
|
||||||
|
@ -1876,7 +1874,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
m_sitAvatarHeight = PhysicsActor.Size.Z;
|
m_sitAvatarHeight = PhysicsActor.Size.Z;
|
||||||
|
|
||||||
bool canSit = false;
|
bool canSit = false;
|
||||||
pos = part.AbsolutePosition + offset;
|
Vector3 pos = part.AbsolutePosition + offset;
|
||||||
|
|
||||||
if (part.IsSitTargetSet)
|
if (part.IsSitTargetSet)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue