diff options
author | Tom | 2011-03-29 09:28:27 -0700 |
---|---|---|
committer | Tom | 2011-03-29 09:28:27 -0700 |
commit | 45548873bdb399a5d798b36a8208ca4cd8cfe06c (patch) | |
tree | dde064524514ef6bd040f950bae79d787a3577ac | |
parent | Many scripted items use long lists of llSetLinkPrimitiveParams rules to make ... (diff) | |
download | opensim-SC_OLD-45548873bdb399a5d798b36a8208ca4cd8cfe06c.zip opensim-SC_OLD-45548873bdb399a5d798b36a8208ca4cd8cfe06c.tar.gz opensim-SC_OLD-45548873bdb399a5d798b36a8208ca4cd8cfe06c.tar.bz2 opensim-SC_OLD-45548873bdb399a5d798b36a8208ca4cd8cfe06c.tar.xz |
Fix llGetParcelPrimOwners so that it returns LSL_Strings in the list rather than C# Strings
-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 bba0c3b..ea38427 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -10541,7 +10541,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
10541 | { | 10541 | { |
10542 | foreach (KeyValuePair<UUID, int> detectedParams in land.GetLandObjectOwners()) | 10542 | foreach (KeyValuePair<UUID, int> detectedParams in land.GetLandObjectOwners()) |
10543 | { | 10543 | { |
10544 | ret.Add(detectedParams.Key.ToString()); | 10544 | ret.Add(new LSL_String(detectedParams.Key.ToString())); |
10545 | ret.Add(detectedParams.Value); | 10545 | ret.Add(detectedParams.Value); |
10546 | } | 10546 | } |
10547 | } | 10547 | } |