diff options
author | Dr Scofield | 2008-06-28 07:30:49 +0000 |
---|---|---|
committer | Dr Scofield | 2008-06-28 07:30:49 +0000 |
commit | 55a4cf33a3ce954fe1e5fff76e044e649ea31ebd (patch) | |
tree | dfb9a2a3d72e194384c90873863c8158b4a897fe /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) | |
download | opensim-SC-55a4cf33a3ce954fe1e5fff76e044e649ea31ebd.zip opensim-SC-55a4cf33a3ce954fe1e5fff76e044e649ea31ebd.tar.gz opensim-SC-55a4cf33a3ce954fe1e5fff76e044e649ea31ebd.tar.bz2 opensim-SC-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.cs | 8 |
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() |