Fox another scripting nasty. Stuff no system.string objects into lists

0.7-release
Melanie Thielker 2010-07-02 04:26:55 +02:00 committed by Diva Canto
parent 0abedae3e4
commit 8864e3f058
1 changed files with 1 additions and 1 deletions

View File

@ -4950,7 +4950,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
case ',':
if (parens == 0)
{
result.Add(src.Substring(start,length).Trim());
result.Add(new LSL_String(src.Substring(start,length).Trim()));
start += length+1;
length = 0;
}