diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | 4 | ||||
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs index 509c866..937ac70 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | |||
@@ -2530,7 +2530,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
2530 | public string llGetKey() | 2530 | public string llGetKey() |
2531 | { | 2531 | { |
2532 | m_host.AddScriptLPS(1); | 2532 | m_host.AddScriptLPS(1); |
2533 | return m_host.ToString(); | 2533 | return m_host.UUID.ToString(); |
2534 | } | 2534 | } |
2535 | 2535 | ||
2536 | public void llSetBuoyancy(double buoyancy) | 2536 | public void llSetBuoyancy(double buoyancy) |
@@ -2981,7 +2981,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
2981 | SceneObjectPart part = m_host.ParentGroup.GetLinkNumPart(linknum); | 2981 | SceneObjectPart part = m_host.ParentGroup.GetLinkNumPart(linknum); |
2982 | if (part != null) | 2982 | if (part != null) |
2983 | { | 2983 | { |
2984 | return part.ToString(); | 2984 | return part.UUID.ToString(); |
2985 | } | 2985 | } |
2986 | else | 2986 | else |
2987 | { | 2987 | { |
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 95c0fdd..f67f422 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -2401,7 +2401,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
2401 | public string llGetKey() | 2401 | public string llGetKey() |
2402 | { | 2402 | { |
2403 | m_host.AddScriptLPS(1); | 2403 | m_host.AddScriptLPS(1); |
2404 | return m_host.ToString(); | 2404 | return m_host.UUID.ToString(); |
2405 | } | 2405 | } |
2406 | 2406 | ||
2407 | public void llSetBuoyancy(double buoyancy) | 2407 | public void llSetBuoyancy(double buoyancy) |
@@ -2862,7 +2862,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
2862 | SceneObjectPart part = m_host.ParentGroup.GetLinkNumPart(linknum); | 2862 | SceneObjectPart part = m_host.ParentGroup.GetLinkNumPart(linknum); |
2863 | if (part != null) | 2863 | if (part != null) |
2864 | { | 2864 | { |
2865 | return part.ToString(); | 2865 | return part.UUID.ToString(); |
2866 | } | 2866 | } |
2867 | else | 2867 | else |
2868 | { | 2868 | { |