* Stop the HasGroupChanged flag being reverted for newly restored prims which need to be persisted to the db

* This should stop the problem where linked prims loaded via an archive did not survive server restart
* It may address mantis 1819 though the symptoms don't look consistent
This commit is contained in:
Justin Clarke Casey
2008-07-25 17:48:58 +00:00
parent c724e38433
commit d954f46a0a
3 changed files with 27 additions and 26 deletions

View File

@@ -491,16 +491,16 @@ namespace OpenSim.Region.Environment.Scenes
{
StoreUndoState();
m_offsetPosition = value;
try
{
//try
//{
// Hack to get the child prim to update world positions in the physics engine
ParentGroup.ResetChildPrimPhysicsPositions();
// ParentGroup.ResetChildPrimPhysicsPositions();
}
catch (NullReferenceException)
{
//}
//catch (NullReferenceException)
//{
// Ignore, and skip over.
}
//}
//m_log.Info("[PART]: OFFSET:" + m_offsetPosition.ToString());
}
}