[Opensim-dev] Possible Error in 0.6.8-release source code that may be affecting open mantis issues
capnjj at my-webhome.com
capnjj at my-webhome.com
Mon May 10 17:39:43 UTC 2010
Hello list,
I believe I have found an error in the 0.6.8-release source code that I
think may be affecting open mantis issues, and may be the underlying
cause of some unexpected behavior.
The error occurs in the ScenePresence.cs file at or around line 1691, in
the SendSitResponse function.
The line in question is:
bool SitTargetisSet = (!(avSitOffSet.X == 0f && avSitOffSet.Y == 0f &&
avSitOffSet.Z == 0f && avSitOrientation.W == 0f && avSitOrientation.X ==
0f && avSitOrientation.Y == 0f && avSitOrientation.Z == 1f));
I believe this should be:
bool SitTargetisSet = (!(avSitOffSet.X == 0f && avSitOffSet.Y == 0f &&
avSitOffSet.Z == 0f && avSitOrientation.X == 0f && avSitOrientation.Y ==
0f && avSitOrientation.Z == 0f && avSitOrientation.W == 1f));
As I am not a developer on this project, I wanted to get this
information out to someone who could review it and make the change, if
appropriate.
Regards,
CapnJJ
More information about the Opensim-dev
mailing list