potencial null ref
parent
fdea8fc96b
commit
f9f35e5049
|
@ -4323,6 +4323,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
return;
|
return;
|
||||||
|
|
||||||
SceneObjectPart targetPart = World.GetSceneObjectPart((UUID)targetID);
|
SceneObjectPart targetPart = World.GetSceneObjectPart((UUID)targetID);
|
||||||
|
if (targetPart == null)
|
||||||
|
return;
|
||||||
|
|
||||||
if (targetPart.ParentGroup.AttachmentPoint != 0)
|
if (targetPart.ParentGroup.AttachmentPoint != 0)
|
||||||
return; // Fail silently if attached
|
return; // Fail silently if attached
|
||||||
|
@ -4332,23 +4334,21 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
|
|
||||||
SceneObjectGroup parentPrim = null, childPrim = null;
|
SceneObjectGroup parentPrim = null, childPrim = null;
|
||||||
|
|
||||||
if (targetPart != null)
|
if (parent != 0)
|
||||||
{
|
{
|
||||||
if (parent != 0)
|
parentPrim = m_host.ParentGroup;
|
||||||
{
|
childPrim = targetPart.ParentGroup;
|
||||||
parentPrim = m_host.ParentGroup;
|
|
||||||
childPrim = targetPart.ParentGroup;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
parentPrim = targetPart.ParentGroup;
|
|
||||||
childPrim = m_host.ParentGroup;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Required for linking
|
|
||||||
childPrim.RootPart.ClearUpdateSchedule();
|
|
||||||
parentPrim.LinkToGroup(childPrim, true);
|
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
parentPrim = targetPart.ParentGroup;
|
||||||
|
childPrim = m_host.ParentGroup;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Required for linking
|
||||||
|
childPrim.RootPart.ClearUpdateSchedule();
|
||||||
|
parentPrim.LinkToGroup(childPrim, true);
|
||||||
|
|
||||||
|
|
||||||
parentPrim.TriggerScriptChangedEvent(Changed.LINK);
|
parentPrim.TriggerScriptChangedEvent(Changed.LINK);
|
||||||
parentPrim.RootPart.CreateSelected = true;
|
parentPrim.RootPart.CreateSelected = true;
|
||||||
|
|
Loading…
Reference in New Issue