diff options
author | Adam Frisby | 2008-04-25 10:37:22 +0000 |
---|---|---|
committer | Adam Frisby | 2008-04-25 10:37:22 +0000 |
commit | 87e2793ca6672ddcfb54de9dd3c1e16008da5956 (patch) | |
tree | a7870b0c79e4f948262d9c39545d4a86e8b7ad8e /OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs | |
parent | * Used thomas' patch m884 as an example to make HUD attachments work. While... (diff) | |
download | opensim-SC-87e2793ca6672ddcfb54de9dd3c1e16008da5956.zip opensim-SC-87e2793ca6672ddcfb54de9dd3c1e16008da5956.tar.gz opensim-SC-87e2793ca6672ddcfb54de9dd3c1e16008da5956.tar.bz2 opensim-SC-87e2793ca6672ddcfb54de9dd3c1e16008da5956.tar.xz |
* Applying mantis#1048 - Patch for osSetRegionWaterHeight()
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs index 7f41251..06e4bea 100644 --- a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs +++ b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs | |||
@@ -111,7 +111,6 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
111 | 111 | ||
112 | } | 112 | } |
113 | 113 | ||
114 | |||
115 | public void Start(BuilIn_Commands LSL_Functions) | 114 | public void Start(BuilIn_Commands LSL_Functions) |
116 | { | 115 | { |
117 | m_LSL_Functions = LSL_Functions; | 116 | m_LSL_Functions = LSL_Functions; |
@@ -159,7 +158,10 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
159 | { | 158 | { |
160 | return m_LSL_Functions.llSin(f); | 159 | return m_LSL_Functions.llSin(f); |
161 | } | 160 | } |
162 | 161 | public void osSetRegionWaterHeight(double height) | |
162 | { | ||
163 | m_LSL_Functions.osSetRegionWaterHeight(height); | ||
164 | } | ||
163 | public double llCos(double f) | 165 | public double llCos(double f) |
164 | { | 166 | { |
165 | return m_LSL_Functions.llCos(f); | 167 | return m_LSL_Functions.llCos(f); |