diff options
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs index 9c7f868..7828834 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | |||
@@ -1429,6 +1429,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1429 | public string llGetOwner() | 1429 | public string llGetOwner() |
1430 | { | 1430 | { |
1431 | m_host.AddScriptLPS(1); | 1431 | m_host.AddScriptLPS(1); |
1432 | |||
1432 | return m_host.ObjectOwner.ToString(); | 1433 | return m_host.ObjectOwner.ToString(); |
1433 | } | 1434 | } |
1434 | 1435 | ||
@@ -2009,8 +2010,8 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
2009 | public string llGetOwnerKey(string id) | 2010 | public string llGetOwnerKey(string id) |
2010 | { | 2011 | { |
2011 | m_host.AddScriptLPS(1); | 2012 | m_host.AddScriptLPS(1); |
2012 | NotImplemented("llGetOwnerKey"); | 2013 | |
2013 | return String.Empty; | 2014 | return m_host.OwnerID.ToString(); |
2014 | } | 2015 | } |
2015 | 2016 | ||
2016 | public LSL_Types.Vector3 llGetCenterOfMass() | 2017 | public LSL_Types.Vector3 llGetCenterOfMass() |