Fixing llList2double issue (Thanks ldvoipeng)

afrisby
Brian McBee 2007-08-27 01:58:56 +00:00
parent 7e06df5f83
commit f6706e6cf8
1 changed files with 1 additions and 1 deletions

View File

@ -412,7 +412,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler
return Convert.ToInt32(src[index]);
}
public double llList2Double(List<string> src, int index)
public double llList2double(List<string> src, int index)
{
return Convert.ToDouble(src[index]);
}