* 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

@@ -261,8 +261,8 @@ namespace OpenSim.Region.Environment.Scenes
Entities.Add(sceneObject.UUID, sceneObject);
m_numPrim += sceneObject.Children.Count;
if (attachToBackup)
sceneObject.AttachToBackup();
if (attachToBackup)
sceneObject.AttachToBackup();
return true;
}