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 _______________________________________________ Opensim-dev mailing list [email protected] https://lists.berlios.de/mailman/listinfo/opensim-dev
