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