diff options
author | Melanie | 2011-06-05 17:08:21 +0200 |
---|---|---|
committer | Melanie | 2011-06-05 17:08:21 +0200 |
commit | a41051f1dd69d4e774a31e3d930ae1b412b0e0b4 (patch) | |
tree | b63fb596d4502288919bcaa6889359afcffbcfff | |
parent | Persist Buoyancy in inventory (diff) | |
download | opensim-SC_OLD-a41051f1dd69d4e774a31e3d930ae1b412b0e0b4.zip opensim-SC_OLD-a41051f1dd69d4e774a31e3d930ae1b412b0e0b4.tar.gz opensim-SC_OLD-a41051f1dd69d4e774a31e3d930ae1b412b0e0b4.tar.bz2 opensim-SC_OLD-a41051f1dd69d4e774a31e3d930ae1b412b0e0b4.tar.xz |
Make the last otem in a list created with llCSV2List findable
Diffstat (limited to '')
-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 b87bf5a..3f48080 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -5489,7 +5489,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
5489 | } | 5489 | } |
5490 | } | 5490 | } |
5491 | 5491 | ||
5492 | result.Add(src.Substring(start,length).Trim()); | 5492 | result.Add(new LSL_String(src.Substring(start,length).Trim())); |
5493 | 5493 | ||
5494 | return result; | 5494 | return result; |
5495 | } | 5495 | } |