Somehow llList2Float never made it into LSL_BaseClass and LSL_BuiltIn_Commands_Interface - it is now (and foxes Mantis 395)

This commit is contained in:
alondria
2008-02-06 02:04:00 +00:00
parent 6ed5283bc0
commit 31576c8a26
3 changed files with 6 additions and 1 deletions

View File

@@ -1814,7 +1814,7 @@ namespace OpenSim.Region.ScriptEngine.Common
{
return 0.0;
}
return Convert.ToSingle(src.Data[index]);
return Convert.ToDouble(src.Data[index]);
}
public string llList2String(LSL_Types.list src, int index)