aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorTalun2013-01-18 19:16:21 +0000
committerJustin Clark-Casey (justincc)2013-02-08 21:25:47 +0000
commitefcbae372b3c2cdcc4babf907c589c948d212121 (patch)
treef896b3ecdc4ff2eaef20c872a3ff64558ed56637 /OpenSim
parentminor: Fix full scene part console report to show proper Light* names rather ... (diff)
downloadopensim-SC_OLD-efcbae372b3c2cdcc4babf907c589c948d212121.zip
opensim-SC_OLD-efcbae372b3c2cdcc4babf907c589c948d212121.tar.gz
opensim-SC_OLD-efcbae372b3c2cdcc4babf907c589c948d212121.tar.bz2
opensim-SC_OLD-efcbae372b3c2cdcc4babf907c589c948d212121.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')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs4
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 2493a15..2515a9e 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
@@ -5770,13 +5770,13 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
5770 if (parcelOwned && land.LandData.OwnerID == id || 5770 if (parcelOwned && land.LandData.OwnerID == id ||
5771 parcel && land.LandData.GlobalID == id) 5771 parcel && land.LandData.GlobalID == id)
5772 { 5772 {
5773 result.Add(ssp.UUID.ToString()); 5773 result.Add(new LSL_Key(ssp.UUID.ToString()));
5774 } 5774 }
5775 } 5775 }
5776 } 5776 }
5777 else 5777 else
5778 { 5778 {
5779 result.Add(ssp.UUID.ToString()); 5779 result.Add(new LSL_Key(ssp.UUID.ToString()));
5780 } 5780 }
5781 } 5781 }
5782 // Maximum of 100 results 5782 // Maximum of 100 results