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

This commit is contained in:
Melanie Thielker
2010-07-02 04:26:55 +02:00
committed by Diva Canto
parent 0abedae3e4
commit 8864e3f058

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;
}