Use HasPrivateAttachmentPoint properties in SOG.DeleteGroupFromScene() instead of magic numbers
parent
714db90832
commit
68ea096f1b
|
@ -1205,8 +1205,9 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
part.ClearUpdateSchedule();
|
||||
if (part == m_rootPart)
|
||||
{
|
||||
if (!IsAttachment || (AttachedAvatar == avatar.ControllingClient.AgentId) ||
|
||||
(AttachmentPoint < 31) || (AttachmentPoint > 38))
|
||||
if (!IsAttachment
|
||||
|| AttachedAvatar == avatar.ControllingClient.AgentId
|
||||
|| !HasPrivateAttachmentPoint)
|
||||
avatar.ControllingClient.SendKillObject(m_regionHandle, new List<uint> { part.LocalId });
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue