From 0c7e87ee5e3662922ffb03c9768220bf1aa5f612 Mon Sep 17 00:00:00 2001 From: Charles Krinke Date: Sun, 7 Sep 2008 17:32:38 +0000 Subject: 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. --- OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | 2 -- 1 file changed, 2 deletions(-) (limited to 'OpenSim/Region/ScriptEngine/Common') 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 public double llCloud(LSL_Types.Vector3 offset) { m_host.AddScriptLPS(1); - NotImplemented("llCloud"); return 0; } public LSL_Types.Vector3 llWind(LSL_Types.Vector3 offset) { m_host.AddScriptLPS(1); - NotImplemented("llWind"); return new LSL_Types.Vector3(); } -- cgit v1.1