mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 08:06:27 +08:00
Remove parts locking from data classes since these are using a copy of the scene object
This commit is contained in:
@@ -327,13 +327,10 @@ namespace OpenSim.Data.SQLiteLegacy
|
||||
|
||||
lock (ds)
|
||||
{
|
||||
lock (obj.Children)
|
||||
foreach (SceneObjectPart prim in obj.Children.Values)
|
||||
{
|
||||
foreach (SceneObjectPart prim in obj.Children.Values)
|
||||
{
|
||||
// m_log.Info("[REGION DB]: Adding obj: " + obj.UUID + " to region: " + regionUUID);
|
||||
addPrim(prim, obj.UUID, regionUUID);
|
||||
}
|
||||
// m_log.Info("[REGION DB]: Adding obj: " + obj.UUID + " to region: " + regionUUID);
|
||||
addPrim(prim, obj.UUID, regionUUID);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user