diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneObjectPart.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs index f911ef8..1a940aa 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | |||
@@ -932,7 +932,18 @@ namespace OpenSim.Region.Framework.Scenes | |||
932 | public int LinkNum | 932 | public int LinkNum |
933 | { | 933 | { |
934 | get { return m_linkNum; } | 934 | get { return m_linkNum; } |
935 | set { m_linkNum = value; } | 935 | set |
936 | { | ||
937 | // if (ParentGroup != null) | ||
938 | // { | ||
939 | // m_log.DebugFormat( | ||
940 | // "[SCENE OBJECT PART]: Setting linknum of {0}@{1} to {2} from {3}", | ||
941 | // Name, AbsolutePosition, value, m_linkNum); | ||
942 | // Util.PrintCallStack(); | ||
943 | // } | ||
944 | |||
945 | m_linkNum = value; | ||
946 | } | ||
936 | } | 947 | } |
937 | 948 | ||
938 | public byte ClickAction | 949 | public byte ClickAction |