aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
diff options
context:
space:
mode:
authorDr Scofield2008-06-28 07:30:49 +0000
committerDr Scofield2008-06-28 07:30:49 +0000
commit55a4cf33a3ce954fe1e5fff76e044e649ea31ebd (patch)
treedfb9a2a3d72e194384c90873863c8158b4a897fe /OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
parent* Melanie adds the event manager back to the XEngine so all yr events are her... (diff)
downloadopensim-SC_OLD-55a4cf33a3ce954fe1e5fff76e044e649ea31ebd.zip
opensim-SC_OLD-55a4cf33a3ce954fe1e5fff76e044e649ea31ebd.tar.gz
opensim-SC_OLD-55a4cf33a3ce954fe1e5fff76e044e649ea31ebd.tar.bz2
opensim-SC_OLD-55a4cf33a3ce954fe1e5fff76e044e649ea31ebd.tar.xz
From: Kurt Taylor <krtaylor@us.ibm.com>
Patch to fix the passed parms and properly show llTakeCamera and llReleaseCamera as deprecated. Patch for both XEngine and DotNetEngine.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs8
1 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 6324f1a..6f4943d 100644
--- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
+++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
@@ -2119,16 +2119,16 @@ namespace OpenSim.Region.ScriptEngine.Common
2119 NotImplemented("llDetachFromAvatar"); 2119 NotImplemented("llDetachFromAvatar");
2120 } 2120 }
2121 2121
2122 public void llTakeCamera() 2122 public void llTakeCamera(string avatar)
2123 { 2123 {
2124 m_host.AddScriptLPS(1); 2124 m_host.AddScriptLPS(1);
2125 NotImplemented("llTakeCamera"); 2125 Deprecated("llTakeCamera");
2126 } 2126 }
2127 2127
2128 public void llReleaseCamera() 2128 public void llReleaseCamera(string avatar)
2129 { 2129 {
2130 m_host.AddScriptLPS(1); 2130 m_host.AddScriptLPS(1);
2131 NotImplemented("llReleaseCamera"); 2131 Deprecated("llReleaseCamera");
2132 } 2132 }
2133 2133
2134 public string llGetOwner() 2134 public string llGetOwner()