aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common
diff options
context:
space:
mode:
authorCharles Krinke2008-09-07 17:32:38 +0000
committerCharles Krinke2008-09-07 17:32:38 +0000
commit0c7e87ee5e3662922ffb03c9768220bf1aa5f612 (patch)
tree55734f13f90db3ec881aecc164fe0564fbcbf478 /OpenSim/Region/ScriptEngine/Common
parent* Fixes linking using the new types. (diff)
downloadopensim-SC_OLD-0c7e87ee5e3662922ffb03c9768220bf1aa5f612.zip
opensim-SC_OLD-0c7e87ee5e3662922ffb03c9768220bf1aa5f612.tar.gz
opensim-SC_OLD-0c7e87ee5e3662922ffb03c9768220bf1aa5f612.tar.bz2
opensim-SC_OLD-0c7e87ee5e3662922ffb03c9768220bf1aa5f612.tar.xz
Return 0 for no wind and 0 for no clouds from
both llWind and llCloud and remove the "NotImplemented" status leaving us with about 74 "NotImplemented" LSL-C# wrapper functions.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
index 55bdf07..509c866 100644
--- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
+++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
@@ -962,14 +962,12 @@ namespace OpenSim.Region.ScriptEngine.Common
962 public double llCloud(LSL_Types.Vector3 offset) 962 public double llCloud(LSL_Types.Vector3 offset)
963 { 963 {
964 m_host.AddScriptLPS(1); 964 m_host.AddScriptLPS(1);
965 NotImplemented("llCloud");
966 return 0; 965 return 0;
967 } 966 }
968 967
969 public LSL_Types.Vector3 llWind(LSL_Types.Vector3 offset) 968 public LSL_Types.Vector3 llWind(LSL_Types.Vector3 offset)
970 { 969 {
971 m_host.AddScriptLPS(1); 970 m_host.AddScriptLPS(1);
972 NotImplemented("llWind");
973 return new LSL_Types.Vector3(); 971 return new LSL_Types.Vector3();
974 } 972 }
975 973