Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
commit
90cd035693
|
@ -264,8 +264,17 @@ namespace OpenSim.Region.CoreModules.Avatar.Attachments
|
||||||
if (AttachmentPt != 0 && AttachmentPt != objatt.GetAttachmentPoint())
|
if (AttachmentPt != 0 && AttachmentPt != objatt.GetAttachmentPoint())
|
||||||
tainted = true;
|
tainted = true;
|
||||||
|
|
||||||
AttachObject(remoteClient, objatt, AttachmentPt, false);
|
// This will throw if the attachment fails
|
||||||
//objatt.ScheduleGroupForFullUpdate();
|
try
|
||||||
|
{
|
||||||
|
AttachObject(remoteClient, objatt, AttachmentPt, false);
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
// Make sure the object doesn't stick around and bail
|
||||||
|
m_scene.DeleteSceneObject(objatt, false);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
if (tainted)
|
if (tainted)
|
||||||
objatt.HasGroupChanged = true;
|
objatt.HasGroupChanged = true;
|
||||||
|
@ -594,4 +603,4 @@ namespace OpenSim.Region.CoreModules.Avatar.Attachments
|
||||||
so.HasGroupChanged = false;
|
so.HasGroupChanged = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue