From f6706e6cf8fab2f3a187336c3a46a8f82561b16c Mon Sep 17 00:00:00 2001 From: Brian McBee Date: Mon, 27 Aug 2007 01:58:56 +0000 Subject: Fixing llList2double issue (Thanks ldvoipeng) --- .../DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim/Region/ScriptEngine') diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs index 757813b..0256f29 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs @@ -412,7 +412,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler return Convert.ToInt32(src[index]); } - public double llList2Double(List src, int index) + public double llList2double(List src, int index) { return Convert.ToDouble(src[index]); } -- cgit v1.1