aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
diff options
context:
space:
mode:
authorMelanie2012-05-16 12:40:45 +0100
committerMelanie2012-05-16 12:40:45 +0100
commit597f99bca7f0bbea9a1346b7c19c38a58f25257c (patch)
treefd267a58cd1ea2a3500c7b37253bd1ccfef279b9 /OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
parentMerge branch 'avination' into careminster (diff)
parentRoute OAR SOG loading through the common SceneObjectSerializer.FromXml2Format... (diff)
downloadopensim-SC_OLD-597f99bca7f0bbea9a1346b7c19c38a58f25257c.zip
opensim-SC_OLD-597f99bca7f0bbea9a1346b7c19c38a58f25257c.tar.gz
opensim-SC_OLD-597f99bca7f0bbea9a1346b7c19c38a58f25257c.tar.bz2
opensim-SC_OLD-597f99bca7f0bbea9a1346b7c19c38a58f25257c.tar.xz
Merge branch 'master' into careminster
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneObjectPart.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneObjectPart.cs13
1 files changed, 12 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
index f62eef3..a1f434e 100644
--- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
@@ -1010,7 +1010,18 @@ namespace OpenSim.Region.Framework.Scenes
1010 public int LinkNum 1010 public int LinkNum
1011 { 1011 {
1012 get { return m_linkNum; } 1012 get { return m_linkNum; }
1013 set { m_linkNum = value; } 1013 set
1014 {
1015// if (ParentGroup != null)
1016// {
1017// m_log.DebugFormat(
1018// "[SCENE OBJECT PART]: Setting linknum of {0}@{1} to {2} from {3}",
1019// Name, AbsolutePosition, value, m_linkNum);
1020// Util.PrintCallStack();
1021// }
1022
1023 m_linkNum = value;
1024 }
1014 } 1025 }
1015 1026
1016 public byte ClickAction 1027 public byte ClickAction