Properly update lastowner info

In that Other Grid, it used to be done on inventory detach too, but that
seems no longer to be the case.
This commit is contained in:
lickx
2024-07-09 11:24:17 +02:00
committed by lickx
parent 6f5083e5c7
commit 8f5cc78c74

View File

@@ -87,7 +87,10 @@ namespace OpenSim.Region.Framework.Scenes
if (permissionToDelete)
{
foreach (SceneObjectGroup g in objectGroups)
{
g.LastOwnerID = g.OwnerID;
g.DeleteGroupFromScene(false);
}
}
if(Monitor.TryEnter(m_threadLock))