aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.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/BuiltIn_Commands_BaseClass.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/BuiltIn_Commands_BaseClass.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
index c273c03..07e3b41 100644
--- a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
+++ b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
@@ -760,14 +760,14 @@ namespace OpenSim.Region.ScriptEngine.Common
760 m_LSL_Functions.llDetachFromAvatar(); 760 m_LSL_Functions.llDetachFromAvatar();
761 } 761 }
762 762
763 public void llTakeCamera() 763 public void llTakeCamera(string avatar)
764 { 764 {
765 m_LSL_Functions.llTakeCamera(); 765 m_LSL_Functions.llTakeCamera(avatar);
766 } 766 }
767 767
768 public void llReleaseCamera() 768 public void llReleaseCamera(string avatar)
769 { 769 {
770 m_LSL_Functions.llReleaseCamera(); 770 m_LSL_Functions.llReleaseCamera(avatar);
771 } 771 }
772 772
773 public string llGetOwner() 773 public string llGetOwner()