fixing bug where last element in list is ignored

0.7.4-post-fixes
SignpostMarv 2012-08-29 17:21:16 +01:00 committed by Justin Clark-Casey (justincc)
parent a8d8ea7990
commit 41d217321d
1 changed files with 1 additions and 1 deletions

View File

@ -1064,7 +1064,7 @@ namespace OpenSim.Region.ScriptEngine.Shared
{
list ret = new list();
double entry;
for (int i = 0; i < src.Data.Length - 1; i++)
for (int i = 0; i < src.Data.Length; i++)
{
if (double.TryParse(src.Data[i].ToString(), NumberStyles.Float, Culture.NumberFormatInfo, out entry))
{