aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes
diff options
context:
space:
mode:
authorMelanie Thielker2008-07-27 19:32:43 +0000
committerMelanie Thielker2008-07-27 19:32:43 +0000
commit6c3db99a2745f627d0b52ca9a7406c063061ac29 (patch)
tree75aca7cb66456a71f6cf8ba4b8e8ca5e55ab4792 /OpenSim/Region/Environment/Scenes
parentPrevents Mantis #1829 (diff)
downloadopensim-SC_OLD-6c3db99a2745f627d0b52ca9a7406c063061ac29.zip
opensim-SC_OLD-6c3db99a2745f627d0b52ca9a7406c063061ac29.tar.gz
opensim-SC_OLD-6c3db99a2745f627d0b52ca9a7406c063061ac29.tar.bz2
opensim-SC_OLD-6c3db99a2745f627d0b52ca9a7406c063061ac29.tar.xz
Addresses Mantis #1688
Changes erroneous return value of llGetLinkname() to "" for nonexistent prims. Corrects an issue where the root prim of a linked set, upon delink, retains the part number 1.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes')
-rw-r--r--OpenSim/Region/Environment/Scenes/InnerScene.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/InnerScene.cs b/OpenSim/Region/Environment/Scenes/InnerScene.cs
index 55b3ca7..359b6f3 100644
--- a/OpenSim/Region/Environment/Scenes/InnerScene.cs
+++ b/OpenSim/Region/Environment/Scenes/InnerScene.cs
@@ -1432,7 +1432,7 @@ namespace OpenSim.Region.Environment.Scenes
1432 // The link set has been completely torn down 1432 // The link set has been completely torn down
1433 // This is the case if you select a link set and delink 1433 // This is the case if you select a link set and delink
1434 // 1434 //
1435 parenPrim.RootPart.LinkNum = 1; 1435 parenPrim.RootPart.LinkNum = 0;
1436 if (sendEvents) 1436 if (sendEvents)
1437 parenPrim.TriggerScriptChangedEvent(Changed.LINK); 1437 parenPrim.TriggerScriptChangedEvent(Changed.LINK);
1438 } 1438 }