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/LSL_BuiltIn_Commands.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/LSL_BuiltIn_Commands.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | 8 |
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() |