aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
diff options
context:
space:
mode:
authoralondria2008-02-06 02:04:00 +0000
committeralondria2008-02-06 02:04:00 +0000
commit31576c8a26625c3a5cfe51af690b78f4d54902eb (patch)
tree52f0cd6aa58fd1afe38601e62b4bbeae843bf28d /OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
parentConverted logging to use log4net. (diff)
downloadopensim-SC_OLD-31576c8a26625c3a5cfe51af690b78f4d54902eb.zip
opensim-SC_OLD-31576c8a26625c3a5cfe51af690b78f4d54902eb.tar.gz
opensim-SC_OLD-31576c8a26625c3a5cfe51af690b78f4d54902eb.tar.bz2
opensim-SC_OLD-31576c8a26625c3a5cfe51af690b78f4d54902eb.tar.xz
Somehow llList2Float never made it into LSL_BaseClass and LSL_BuiltIn_Commands_Interface - it is now (and foxes Mantis 395)
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
index 66475c3..c9fd873 100644
--- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
+++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
@@ -1814,7 +1814,7 @@ namespace OpenSim.Region.ScriptEngine.Common
1814 { 1814 {
1815 return 0.0; 1815 return 0.0;
1816 } 1816 }
1817 return Convert.ToSingle(src.Data[index]); 1817 return Convert.ToDouble(src.Data[index]);
1818 } 1818 }
1819 1819
1820 public string llList2String(LSL_Types.list src, int index) 1820 public string llList2String(LSL_Types.list src, int index)