aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorMelanie Thielker2010-07-02 04:26:55 +0200
committerMelanie2010-07-02 04:21:07 +0100
commit9e0b562c6e98b3945551a113be24ebaf17bbff29 (patch)
tree80f63b4f6ecb698a5ed137d0183715316bd14469 /OpenSim
parentAdd MapTileURL to robust to supply the url needed by snowglobe (diff)
downloadopensim-SC_OLD-9e0b562c6e98b3945551a113be24ebaf17bbff29.zip
opensim-SC_OLD-9e0b562c6e98b3945551a113be24ebaf17bbff29.tar.gz
opensim-SC_OLD-9e0b562c6e98b3945551a113be24ebaf17bbff29.tar.bz2
opensim-SC_OLD-9e0b562c6e98b3945551a113be24ebaf17bbff29.tar.xz
Fox another scripting nasty. Stuff no system.string objects into lists
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs2
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 712bd7d..0a8d7cb 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
@@ -4950,7 +4950,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
4950 case ',': 4950 case ',':
4951 if (parens == 0) 4951 if (parens == 0)
4952 { 4952 {
4953 result.Add(src.Substring(start,length).Trim()); 4953 result.Add(new LSL_String(src.Substring(start,length).Trim()));
4954 start += length+1; 4954 start += length+1;
4955 length = 0; 4955 length = 0;
4956 } 4956 }