diff options
author | Brian McBee | 2007-08-27 01:58:56 +0000 |
---|---|---|
committer | Brian McBee | 2007-08-27 01:58:56 +0000 |
commit | f6706e6cf8fab2f3a187336c3a46a8f82561b16c (patch) | |
tree | 51928559891af48f1f1c633636678fb446d37346 /OpenSim/Region/ScriptEngine/DotNetEngine/Compiler | |
parent | llList-commands from ldvoipeng, new Default.lsl from dalien (diff) | |
download | opensim-SC_OLD-f6706e6cf8fab2f3a187336c3a46a8f82561b16c.zip opensim-SC_OLD-f6706e6cf8fab2f3a187336c3a46a8f82561b16c.tar.gz opensim-SC_OLD-f6706e6cf8fab2f3a187336c3a46a8f82561b16c.tar.bz2 opensim-SC_OLD-f6706e6cf8fab2f3a187336c3a46a8f82561b16c.tar.xz |
Fixing llList2double issue (Thanks ldvoipeng)
Diffstat (limited to 'OpenSim/Region/ScriptEngine/DotNetEngine/Compiler')
-rw-r--r-- | OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/Server_API/LSL_BuiltIn_Commands.cs | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
412 | return Convert.ToInt32(src[index]); | 412 | return Convert.ToInt32(src[index]); |
413 | } | 413 | } |
414 | 414 | ||
415 | public double llList2Double(List<string> src, int index) | 415 | public double llList2double(List<string> src, int index) |
416 | { | 416 | { |
417 | return Convert.ToDouble(src[index]); | 417 | return Convert.ToDouble(src[index]); |
418 | } | 418 | } |