aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common
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/ScriptEngine/Common
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/ScriptEngine/Common')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
index 684c0cb..59d5f08 100644
--- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
+++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
@@ -2813,7 +2813,7 @@ namespace OpenSim.Region.ScriptEngine.Common
2813 } 2813 }
2814 else 2814 else
2815 { 2815 {
2816 return LLUUID.Zero.ToString(); 2816 return "";
2817 } 2817 }
2818 } 2818 }
2819 2819