set SOG.IsAttachment when doing a full check, so future gets see the right value
parent
36af6a3baa
commit
84c8a7ae53
|
@ -447,7 +447,12 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
/// <returns></returns>
|
||||
public bool IsAttachmentCheckFull()
|
||||
{
|
||||
return (IsAttachment || (m_rootPart.Shape.PCode == (byte)PCodeEnum.Primitive && m_rootPart.Shape.State != 0));
|
||||
if(IsAttachment)
|
||||
return true;
|
||||
|
||||
IsAttachment = (m_rootPart.Shape.PCode == (byte)PCodeEnum.Primitive && m_rootPart.Shape.State != 0);
|
||||
|
||||
return IsAttachment;
|
||||
}
|
||||
|
||||
private struct avtocrossInfo
|
||||
|
|
Loading…
Reference in New Issue