diff options
-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 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 |