diff options
author | Talun | 2013-01-18 19:16:21 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-01-19 01:14:11 +0000 |
commit | 4f70e423df97f3fd52f4a36ac296f696f46b7d34 (patch) | |
tree | d7a10e82596a231c0188df283f062c2fb63e6322 /OpenSim/Region/ScriptEngine/Shared | |
parent | Fix use of scene debug commands when region is set to root or a specific regi... (diff) | |
download | opensim-SC_OLD-4f70e423df97f3fd52f4a36ac296f696f46b7d34.zip opensim-SC_OLD-4f70e423df97f3fd52f4a36ac296f696f46b7d34.tar.gz opensim-SC_OLD-4f70e423df97f3fd52f4a36ac296f696f46b7d34.tar.bz2 opensim-SC_OLD-4f70e423df97f3fd52f4a36ac296f696f46b7d34.tar.xz |
Mantis 6507 keys returned by llGetAgentList incorrect for llList2Key
The type of the keys returned by llGetAgentList corrected to LSL_Key
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index a2f1ff2..50597b7 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -5793,13 +5793,13 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
5793 | if (parcelOwned && land.LandData.OwnerID == id || | 5793 | if (parcelOwned && land.LandData.OwnerID == id || |
5794 | parcel && land.LandData.GlobalID == id) | 5794 | parcel && land.LandData.GlobalID == id) |
5795 | { | 5795 | { |
5796 | result.Add(ssp.UUID.ToString()); | 5796 | result.Add(new LSL_Key(ssp.UUID.ToString())); |
5797 | } | 5797 | } |
5798 | } | 5798 | } |
5799 | } | 5799 | } |
5800 | else | 5800 | else |
5801 | { | 5801 | { |
5802 | result.Add(ssp.UUID.ToString()); | 5802 | result.Add(new LSL_Key(ssp.UUID.ToString())); |
5803 | } | 5803 | } |
5804 | } | 5804 | } |
5805 | // Maximum of 100 results | 5805 | // Maximum of 100 results |