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 | |
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')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 2 |
2 files changed, 2 insertions, 2 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 | ||
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 4438395..c5f1763 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -2699,7 +2699,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
2699 | } | 2699 | } |
2700 | else | 2700 | else |
2701 | { | 2701 | { |
2702 | return LLUUID.Zero.ToString(); | 2702 | return ""; |
2703 | } | 2703 | } |
2704 | } | 2704 | } |
2705 | 2705 | ||