diff options
author | Melanie Thielker | 2010-07-02 04:26:55 +0200 |
---|---|---|
committer | Melanie Thielker | 2010-07-02 04:26:55 +0200 |
commit | a7c4cb95aade11c302c9d1113f720467233b8600 (patch) | |
tree | b909dc76135303d6d5246a9a052b631de708fd6b /OpenSim/Region | |
parent | Merge branch 'careminster-presence-refactor' of ssh://3dhosting.de/var/git/ca... (diff) | |
download | opensim-SC_OLD-a7c4cb95aade11c302c9d1113f720467233b8600.zip opensim-SC_OLD-a7c4cb95aade11c302c9d1113f720467233b8600.tar.gz opensim-SC_OLD-a7c4cb95aade11c302c9d1113f720467233b8600.tar.bz2 opensim-SC_OLD-a7c4cb95aade11c302c9d1113f720467233b8600.tar.xz |
Fox another scripting nasty. Stuff no system.string objects into lists
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index e226682..11d7c2b 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -5247,7 +5247,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
5247 | case ',': | 5247 | case ',': |
5248 | if (parens == 0) | 5248 | if (parens == 0) |
5249 | { | 5249 | { |
5250 | result.Add(src.Substring(start,length).Trim()); | 5250 | result.Add(new LSL_String(src.Substring(start,length).Trim())); |
5251 | start += length+1; | 5251 | start += length+1; |
5252 | length = 0; | 5252 | length = 0; |
5253 | } | 5253 | } |