diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | 4 |
1 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 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 | { |