diff options
author | Melanie Thielker | 2008-07-27 19:32:43 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-07-27 19:32:43 +0000 |
commit | 6c3db99a2745f627d0b52ca9a7406c063061ac29 (patch) | |
tree | 75aca7cb66456a71f6cf8ba4b8e8ca5e55ab4792 /OpenSim/Region/ScriptEngine/Common | |
parent | Prevents Mantis #1829 (diff) | |
download | opensim-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.cs | 2 |
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 | ||